X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-logs.php;h=0b9c0f65c8635506362455a114381a460c783eb7;hb=995488beda665a1fc3de65df95f2d1ae236d1245;hp=385aa6fbdab0a3c0099060132693721767ba751f;hpb=263a089d8a499e0e26d0af9e7aa7639f88b8ca60;p=mailer.git diff --git a/inc/modules/admin/what-logs.php b/inc/modules/admin/what-logs.php index 385aa6fbda..0b9c0f65c8 100644 --- a/inc/modules/admin/what-logs.php +++ b/inc/modules/admin/what-logs.php @@ -18,6 +18,7 @@ * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * + * Copyright (c) 2009, 2010 by Mailer Developer Team * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -44,9 +45,9 @@ if ((!defined('__SECURITY')) || (!isAdmin())) { // Add description as navigation point addMenuDescription('admin', __FILE__); -if (isGetRequestElementSet('access')) { +if (isGetRequestParameterSet('access')) { // Secure input and construct FQFN - $access = SQL_ESCAPE(secureString(getRequestElement('access'))); + $access = SQL_ESCAPE(secureString(getRequestParameter('access'))); $target = sprintf("%slogs/%s", getConfig('PATH'), $access); // Is the file valid and readable? @@ -75,7 +76,7 @@ if (isGetRequestElementSet('access')) { outputHtml($OUTPUT); // Output message - loadTemplate('admin_settings_saved', false, sprintf(getMessage('ADMIN_UNKNOWN_LOGFILE_FORMAT'), $access)); + loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_UNKNOWN_LOGFILE_FORMAT', $access)); return; } @@ -84,7 +85,7 @@ if (isGetRequestElementSet('access')) { shutdown(); } else { // Not readable! - loadTemplate('admin_settings_saved', false, sprintf(getMessage('LOGFILE_NOT_READABLE'), $access)); + loadTemplate('admin_settings_saved', false, getMaskedMessage('LOGFILE_NOT_READABLE', $access)); } } else { // Is the directory there? @@ -101,14 +102,14 @@ if (isGetRequestElementSet('access')) { $file = basename($file); // Okay, add it - outputHtml('
  • ' . $file . '
  • '); + outputHtml('
  • ' . $file . '
  • '); } // END - foreach // Finish list outputHtml(''); } else { // logs directory does not exist - loadTemplate('admin_settings_saved', false, sprintf(getMessage('ADMIN_LOGS_DIR_404'), getConfig('logs_base'))); + loadTemplate('admin_settings_saved', false, getMessage('ADMIN_LOGS_DIR_404')); } }