X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-logs.php;h=14ab44f1151343e44e64cff93e56d3b5ebbec1e0;hb=ad851a23313d8ac6489a759a0f3d62e3bc6f4682;hp=efffe465da0aa292b4742f59af0f252d2f93ea31;hpb=5ef6ed7373ae85e5635e39e2a0adf9496a8add05;p=mailer.git diff --git a/inc/modules/admin/what-logs.php b/inc/modules/admin/what-logs.php index efffe465da..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));