From b94278362b33bb51ddf525358f5dfba6688d01b9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= 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.2