From d78c9af6bfcd0ccecd654c193f6f5fb0d50640f3 Mon Sep 17 00:00:00 2001 From: quix0r Date: Wed, 9 Jan 2013 05:19:31 +0000 Subject: [PATCH] Bug fixed :( --- inc/wrapper-functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/wrapper-functions.php b/inc/wrapper-functions.php index 1593901d6a..25e188c482 100644 --- a/inc/wrapper-functions.php +++ b/inc/wrapper-functions.php @@ -3418,7 +3418,7 @@ function padLeftZero ($str, $amount = 2) { return prependZeros($str, $amount); } else { // Pad it - return str_pad($str, $amount, '0', STR_PAD_LEFT) + return str_pad($str, $amount, '0', STR_PAD_LEFT); } } -- 2.39.5