X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-logs.php;h=6d244e9656a9866efe8595bac7e1c5a3c9cf43fe;hb=501a861954273a54a21b714587fc33b57322d8e4;hp=49b9553395e5463bd783678d69ff69f6f34ad743;hpb=971a60aaee17e6fc376b433f3f5763c85a512110;p=mailer.git diff --git a/inc/modules/admin/what-logs.php b/inc/modules/admin/what-logs.php index 49b9553395..6d244e9656 100644 --- a/inc/modules/admin/what-logs.php +++ b/inc/modules/admin/what-logs.php @@ -17,7 +17,7 @@ * Needs to be in all Files and every File needs "svn propset * * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * - * Copyright (c) 2003 - 2008 by Roland Haeder * + * Copyright (c) 2003 - 2009 by Roland Haeder * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -37,18 +37,17 @@ ************************************************************************/ // Some security stuff... -if ((!defined('__SECURITY')) || (!IS_ADMIN())) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; - require($INC); +if ((!defined('__SECURITY')) || (!isAdmin())) { + die(); } // Add description as navigation point -ADD_DESCR('admin', __FILE__); +addMenuDescription('admin', __FILE__); -if (REQUEST_ISSET_GET('access')) { +if (isGetRequestElementSet('access')) { // Secure input and construct FQFN - $access = SQL_ESCAPE(strip_tags(REQUEST_GET('access'))); - $target = sprintf("%slogs/%s", constant('PATH'), $access); + $access = SQL_ESCAPE(secureString(getRequestElement('access'))); + $target = sprintf("%slogs/%s", getConfig('PATH'), $access); // Is the file valid and readable? if (isFileReadable($target)) { @@ -73,10 +72,10 @@ if (REQUEST_ISSET_GET('access')) { sendHeader('Content-Type: text/plain'); } else { // Restore old content - OUTPUT_HTML($OUTPUT); + outputHtml($OUTPUT); // Output message - LOAD_TEMPLATE('admin_settings_saved', false, sprintf(getMessage('ADMIN_UNKNOWN_LOGFILE_FORMAT'), $access)); + loadTemplate('admin_settings_saved', false, sprintf(getMessage('ADMIN_UNKNOWN_LOGFILE_FORMAT'), $access)); return; } @@ -85,13 +84,13 @@ if (REQUEST_ISSET_GET('access')) { shutdown(); } else { // Not readable! - LOAD_TEMPLATE('admin_settings_saved', false, sprintf(getMessage('LOGFILE_NOT_READABLE'), $access)); + loadTemplate('admin_settings_saved', false, sprintf(getMessage('LOGFILE_NOT_READABLE'), $access)); } } else { // Is the directory there? - if (isDirectory(constant('PATH') . getConfig('logs_base'))) { + if (isDirectory(getConfig('PATH') . getConfig('logs_base'))) { // Logs directory does exist so begin the list - OUTPUT_HTML('
    '); + outputHtml('
      '); // Read all files $files = getArrayFromDirectory(getConfig('logs_base'), 'access'); @@ -101,15 +100,15 @@ if (REQUEST_ISSET_GET('access')) { // Cut dirname away $file = basename($file); - // Okay, let us print it out - OUTPUT_HTML("
    1. ".$file."
    2. "); + // Okay, add it + 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, sprintf(getMessage('ADMIN_LOGS_DIR_404'), getConfig('logs_base'))); } }