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=4b839cfc53d1aa5aa64adb940e122efe1475c9e9;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; }