From: Brion Vibber Date: Thu, 14 Jan 2010 05:35:47 +0000 (-0800) Subject: fix for non-% memory soft limit X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e8abb0c2ed7219dbcca4e879db36584c3d026bc0;p=quix0rs-gnu-social.git fix for non-% memory soft limit --- diff --git a/lib/iomaster.php b/lib/iomaster.php index aff5b145c2..5d1071a392 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; }