X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-logs.php;h=b4e22c82340c6de86eea4b4dc00be395e281e6d1;hb=91c5ab6d4bba6959611a9b9661c032cc4c9da6e8;hp=c69492f710c279e2d39d7c2fffdc2268c314a0ee;hpb=72288d31358f8061513f8d3d61a1f9e7feb44e50;p=mailer.git diff --git a/inc/modules/admin/what-logs.php b/inc/modules/admin/what-logs.php index c69492f710..b4e22c8234 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 +101,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')); } }