X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-logs.php;h=bc0c597d0894348b21859ef0aa8eaf2d839fcf4b;hp=df3a5872f02f9c5d6c38b599fb337d4d18d37575;hb=30ae22f62ae87c53a56baf0d134569ba91011111;hpb=81bfbcd72e424060ea1223b49ad92fcfa150f361 diff --git a/inc/modules/admin/what-logs.php b/inc/modules/admin/what-logs.php index df3a5872f0..bc0c597d08 100644 --- a/inc/modules/admin/what-logs.php +++ b/inc/modules/admin/what-logs.php @@ -1,7 +1,7 @@ "); - $handle = opendir($dir) or app_die(__FILE__, __LINE__, '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(""); + if (isDirectory(getPath() . getConfig('logs_base'))) { + // Logs directory does exist so begin the list + outputHtml('
      '); + + // Read all files + $files = getArrayFromDirectory(getConfig('logs_base'), 'access'); + + // And walk through them + foreach ($files 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'))); + loadTemplate('admin_settings_saved', false, '{--ADMIN_LOGS_DIR_404--}'); } } -// +// [EOF] ?>