X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-logs.php;h=14ab44f1151343e44e64cff93e56d3b5ebbec1e0;hp=85844bb5c00ca09b0a84a24ba63ab01c3f07e335;hb=d90ace91b5fce766924e587d20450f45318ccc64;hpb=75ad748a68473ace540251427a74fb781b1145e9 diff --git a/inc/modules/admin/what-logs.php b/inc/modules/admin/what-logs.php index 85844bb5c0..14ab44f115 100644 --- a/inc/modules/admin/what-logs.php +++ b/inc/modules/admin/what-logs.php @@ -32,13 +32,13 @@ ************************************************************************/ // Some security stuff... -if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN())) -{ +if ((!defined('__SECURITY')) || (!IS_ADMIN())) { $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; require($INC); } + // Add description as navigation point -ADD_DESCR("admin", basename(__FILE__)); +ADD_DESCR("admin", __FILE__); if (!empty($_GET['access'])) { // Secure input and construct FQFN @@ -46,7 +46,7 @@ if (!empty($_GET['access'])) { $target = sprintf("%slogs/%s", PATH, $access); // Is the file valid and readable? - if ((file_exists($target)) && (is_readable($target))) { + if (FILE_READABLE($target)) { // Load it directly $content = implode("", file($target)); @@ -75,17 +75,17 @@ if (!empty($_GET['access'])) { $dir = PATH.LOGS_BASE."/"; if (is_dir($dir)) { // logs directory does exist - OUTPUT_HTML ("
    "); + OUTPUT_HTML("
      "); $handle = @opendir($dir) or mxchange_die("Cannot open directory ".LOGS_BASE."!"); while($file = @readdir($handle)) { // We currenly only like files with "access" as prefix, should be more flexible! if (substr($file, 0, 6) == "access") { // Okay, let us print it out - OUTPUT_HTML ("
    1. ".$file."
    2. "); + OUTPUT_HTML("
    3. ".$file."
    4. "); } } @closedir($handle); - OUTPUT_HTML ("
    "); + OUTPUT_HTML("
"); } else {