X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-logs.php;h=cd12c8e275b83791ca5b1367181d39631fc0cd63;hb=095f5ab59b539834d2c67e5d409d01820e10d8be;hp=e3bce0b26e81d01353f3957a530e05c80d2ac1fd;hpb=d8148e3f1f3a6762b2e786dbe99ada269dcf2ea0;p=mailer.git diff --git a/inc/modules/admin/what-logs.php b/inc/modules/admin/what-logs.php index e3bce0b26e..cd12c8e275 100644 --- a/inc/modules/admin/what-logs.php +++ b/inc/modules/admin/what-logs.php @@ -1,7 +1,7 @@ "); - $handle = opendir($dir) or mxchange_die("Cannot open directory ".getConfig('logs_base')."!"); - while ($file = readdir($handle)) { - // We currenly only like files with "access" as prefix, should be more flexible! - if (substr($file, 0, 6) == "access") { - // Okay, let us print it out - OUTPUT_HTML("
  • ".$file."
  • "); - } - } - closedir($handle); - OUTPUT_HTML(""); + // Is the directory there? + if (isDirectory(getPath() . getConfig('logs_base'))) { + // Logs directory does exist so begin the list + outputHtml('
      '); + + // Read all files + foreach (getArrayFromDirectory(getConfig('logs_base'), 'access') as $file) { + // Cut dirname away + $file = basename($file); + + // Okay, add it + outputHtml('
    1. ' . $file . '
    2. '); + } // END - foreach + + // Finish list + outputHtml('
    '); } else { // logs directory does not exist - LOAD_TEMPLATE("admin_settings_saved", false, sprintf(getMessage('ADMIN_LOGS_DIR_404'), getConfig('logs_base'))); + displayMessage('{--ADMIN_LOGS_DIR_404--}'); } } -// +// [EOF] ?>