X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-logs.php;h=896073d96093a0f20187d99266e00ef53a717899;hb=465859de0e017d99130df209391fe0742fc24271;hp=dd5218e890f348ef2bdc72b24d8efcb070ef4dfb;hpb=e8ca54fe91872ab95a6ffdc4f1268bf18889021d;p=mailer.git diff --git a/inc/modules/admin/what-logs.php b/inc/modules/admin/what-logs.php index dd5218e890..896073d960 100644 --- a/inc/modules/admin/what-logs.php +++ b/inc/modules/admin/what-logs.php @@ -16,8 +16,8 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2011 by Mailer Developer Team * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -43,9 +43,9 @@ if ((!defined('__SECURITY')) || (!isAdmin())) { // Add description as navigation point addYouAreHereLink('admin', __FILE__); -if (isGetRequestParameterSet('access')) { +if (isGetRequestElementSet('access')) { // Secure input and construct FQFN - $access = SQL_ESCAPE(secureString(getRequestParameter('access'))); + $access = SQL_ESCAPE(secureString(getRequestElement('access'))); $target = sprintf("%slogs/%s", getPath(), $access); // Is the file valid and readable? @@ -74,7 +74,7 @@ if (isGetRequestParameterSet('access')) { clearOutputBuffer(); } else { // Output message - loadTemplate('admin_settings_saved', false, getMaskedMessage('ADMIN_UNKNOWN_LOGFILE_FORMAT', $access)); + displayMessage('{%message,ADMIN_UNKNOWN_LOGFILE_FORMAT=' . $access . '%}'); return; } @@ -83,7 +83,7 @@ if (isGetRequestParameterSet('access')) { shutdown(); } else { // Not readable! - loadTemplate('admin_settings_saved', false, getMaskedMessage('LOGFILE_NOT_READABLE', $access)); + displayMessage('{%message,LOGFILE_NOT_READABLE=' . $access . '%}'); } } else { // Is the directory there? @@ -104,7 +104,7 @@ if (isGetRequestParameterSet('access')) { outputHtml(''); } else { // logs directory does not exist - loadTemplate('admin_settings_saved', false, '{--ADMIN_LOGS_DIR_404--}'); + displayMessage('{--ADMIN_LOGS_DIR_404--}'); } }