X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Ffunctions.php;h=db721a542e5b3e9aaa02ab60781e010421b0aeb1;hp=5f9e1229ade302b33056d1ada5faeb8d7d17c4b0;hb=509ae618cc32ba2b811cf66567d62abc597dc405;hpb=5fcc4a6ee46b5fc4bc8bee9f71fa5078fc25c5a9 diff --git a/inc/functions.php b/inc/functions.php index 5f9e1229ad..db721a542e 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -3430,7 +3430,7 @@ function getArrayFromDirectory ($baseDir, $prefix, $fileIncludeDirs = false, $ad // Exclude '.', '..' and entries in $excludeArray automatically if (in_array($baseFile, $excludeArray, true)) { // Exclude them - //* DEBUG: */ print 'excluded=' . $baseFile . '
'; + //* DEBUG: */ print 'excluded=' . $baseFile . "
\n"; continue; } // END - if @@ -3444,9 +3444,9 @@ function getArrayFromDirectory ($baseDir, $prefix, $fileIncludeDirs = false, $ad // Check if the base filename matches an exclusion pattern and if the pattern is not empty if ((!empty($excludePattern)) && (preg_match($excludePattern, $baseFile, $match))) { // These Lines are only for debugging!! - //* DEBUG: */ print 'baseDir:' . $baseDir . '
'; - //* DEBUG: */ print 'baseFile:' . $baseFile . '
'; - //* DEBUG: */ print 'FQFN:' . $FQFN . '
'; + //* DEBUG: */ print 'baseDir:' . $baseDir . "
\n"; + //* DEBUG: */ print 'baseFile:' . $baseFile . "
\n"; + //* DEBUG: */ print 'FQFN:' . $FQFN . "
\n"; // Exclude this one continue;