X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-logs.php;h=711ad3edc1e7b87435f1aa07d72db220f89eb89f;hp=c1f1f4a1be70d8808dac7cddfa4fde69970bb583;hb=f3e4c2c048761589836fdbe6bd2e46599a1833a7;hpb=1cf72a9c1a5e737509af79d49f0731da2eb6a218 diff --git a/inc/modules/admin/what-logs.php b/inc/modules/admin/what-logs.php index c1f1f4a1be..711ad3edc1 100644 --- a/inc/modules/admin/what-logs.php +++ b/inc/modules/admin/what-logs.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Management fuer Zugriffslogbuecher * * -------------------------------------------------------------------- * - * * + * $Revision:: 856 $ * + * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. Mär 2009) $ * + * $Tag:: 0.2.1-FINAL $ * + * $Author:: stelzi $ * + * 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 * * For more information visit: http://www.mxchange.org * @@ -40,9 +45,9 @@ if ((!defined('__SECURITY')) || (!IS_ADMIN())) { // Add description as navigation point ADD_DESCR("admin", __FILE__); -if (!empty($_GET['access'])) { +if (REQUEST_ISSET_GET(('access'))) { // Secure input and construct FQFN - $access = SQL_ESCAPE(strip_tags($_GET['access'])); + $access = SQL_ESCAPE(strip_tags(REQUEST_GET('access'))); $target = sprintf("%slogs/%s", constant('PATH'), $access); // Is the file valid and readable? @@ -77,14 +82,14 @@ if (!empty($_GET['access'])) { // Output the logfile's content and exit print($content); - exit; + shutdown(); } else { // Not readable! LOAD_TEMPLATE("admin_settings_saved", false, sprintf(getMessage('LOGFILE_NOT_READABLE'), $access)); } } else { // List access logfiles - $dir = PATH.getConfig('logs_base')."/"; + $dir = constant('PATH') . getConfig('logs_base') . "/"; if (is_dir($dir)) { // logs directory does exist OUTPUT_HTML("
    ");