From: Roland Häder Date: Wed, 9 Jan 2013 05:19:31 +0000 (+0000) Subject: Bug fixed :( X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=b94278362b33bb51ddf525358f5dfba6688d01b9 Bug fixed :( --- 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); } }