X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-logs.php;h=0b9c0f65c8635506362455a114381a460c783eb7;hb=b2c9fe30ed615975b27df4bf511b09517913b576;hp=9af39581e6650fe458c2e4618d88603683ee522f;hpb=36c3c8b749a88ce05ad0fda81e00047f9cb5433f;p=mailer.git diff --git a/inc/modules/admin/what-logs.php b/inc/modules/admin/what-logs.php index 9af39581e6..0b9c0f65c8 100644 --- a/inc/modules/admin/what-logs.php +++ b/inc/modules/admin/what-logs.php @@ -1,7 +1,7 @@ '); + outputHtml('
    '); // Read all files $files = getArrayFromDirectory(getConfig('logs_base'), 'access'); @@ -102,14 +102,14 @@ if (REQUEST_ISSET_GET('access')) { $file = basename($file); // Okay, add it - OUTPUT_HTML("
  1. ".$file."
  2. "); + outputHtml('
  3. ' . $file . '
  4. '); } // END - foreach // Finish list - OUTPUT_HTML('
'); + 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, getMessage('ADMIN_LOGS_DIR_404')); } }