From: Andrew Garrett Date: Tue, 4 Aug 2009 15:08:56 +0000 (+0000) Subject: Fix syntax error X-Git-Tag: 1.31.0-rc.0~40514 X-Git-Url: https://git.cyclocoop.org/%28%28?a=commitdiff_plain;h=8daea0e1315440a439d6a1257b5d8a5a8979cd23;p=lhc%2Fweb%2Fwiklou.git Fix syntax error --- diff --git a/includes/GlobalFunctions.php b/includes/GlobalFunctions.php index 9877d941e1..3ee69a6dcc 100644 --- a/includes/GlobalFunctions.php +++ b/includes/GlobalFunctions.php @@ -3204,6 +3204,7 @@ function wfParseMemoryLimit( $memlimit ) { $val *= 1024; case 'k': $val *= 1024; + } return $val; }