]> git.mxchange.org Git - mailer.git/blobdiff - inc/wrapper-functions.php
Fix for wrong SERVER_NAME usage (may cause trouble)
[mailer.git] / inc / wrapper-functions.php
index dbc24d16796050d6e84cd70f73d72a078014ead9..e0244d0af44eff72fd5a853b9fe60d872058e29d 100644 (file)
@@ -172,7 +172,7 @@ function merge_array ($array1, $array2, $keepIndex = FALSE) {
 
        // Maintain index of array2?
        if ($keepIndex === TRUE) {
-               // Keep index of array2, array_merge() rewrites $key=2 to $key=0 ! :(
+               // Keep index of array2, array_merge() rewrites e.g. $key=1 to $key=0, $key=2 to $key=1 ! :(
                foreach ($array2 as $key => $value) {
                        // Add it
                        $array1[$key] = $value;