From 8daea0e1315440a439d6a1257b5d8a5a8979cd23 Mon Sep 17 00:00:00 2001 From: Andrew Garrett Date: Tue, 4 Aug 2009 15:08:56 +0000 Subject: [PATCH] Fix syntax error --- includes/GlobalFunctions.php | 1 + 1 file changed, 1 insertion(+) 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; } -- 2.20.1