From: Roland Häder Date: Tue, 30 Jul 2013 20:56:50 +0000 (+0000) Subject: Opps :( X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=5c0d2c01826cb3802aed682513b7f98454394867 Opps :( --- diff --git a/inc/wrapper-functions.php b/inc/wrapper-functions.php index 89b6ed3c76..135f3d3dc4 100644 --- a/inc/wrapper-functions.php +++ b/inc/wrapper-functions.php @@ -3502,7 +3502,7 @@ function shift_array (&$array, $value, $key = '0') { // Wrapper for str_pad() with left padding zeros function padLeftZero ($str, $amount = 2) { // Is str_pad() there? - if (function_exists('str_pad')) { + if (!function_exists('str_pad')) { // Use prependZeros() return prependZeros($str, $amount); } else {