X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fhandler.php;h=7dd84499a46be738879f49b8030c2d35c69927d8;hp=7bba6be8918fbeb5d3870c4038a72e9563735c62;hb=12d1414024e87153a133bb1d0fe0185ca2c700c5;hpb=3af8b17c962e094e3eaffbd6d111290cdb286c92 diff --git a/inc/handler.php b/inc/handler.php index 7bba6be891..7dd84499a4 100644 --- a/inc/handler.php +++ b/inc/handler.php @@ -38,7 +38,7 @@ // Some security stuff... if (!defined('__SECURITY')) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; + $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; require($INC); } @@ -46,17 +46,17 @@ if (!defined('__SECURITY')) { function __errorHandler ($errno, $errstr, $errfile, $errline) { // Construct message $msg = sprintf("errno=%s,errstr=%s,errfile=%s,errline=%s", - $errno, - $errstr, - basename($errfile), - $errline + $errno, + $errstr, + basename($errfile), + $errline ); // Write debug log message DEBUG_LOG(__FUNCTION__, __LINE__, "".$msg, true); // Output message to user and die - if (EXT_IS_ACTIVE("debug")) { + if (EXT_IS_ACTIVE('debug')) { // Debug extension found! So Output a small message app_die(__FUNCTION__, __LINE__, "Error message written to debug.log. Please try to call the main page to continue."); } else {