diff options
author | Brion Vibber <brion@pobox.com> | 2010-01-13 21:35:47 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-01-13 21:35:47 -0800 |
commit | e8abb0c2ed7219dbcca4e879db36584c3d026bc0 (patch) | |
tree | 6ff2975cf33b5d221aa5c165f4b6be232209e9ab /lib/iomaster.php | |
parent | cb962ed4755f213042f72580180908033ef3276e (diff) |
fix for non-% memory soft limit
Diffstat (limited to 'lib/iomaster.php')
-rw-r--r-- | lib/iomaster.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/iomaster.php b/lib/iomaster.php index aff5b145c..5d1071a39 100644 --- a/lib/iomaster.php +++ b/lib/iomaster.php @@ -231,7 +231,7 @@ class IoMaster return -1; } } else { - return $this->parseMemoryLimit($limit); + return $this->parseMemoryLimit($softLimit); } return $softLimit; } |