X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fhandler.php;h=57da7b6a069131a803caf49a5a761fb860d5e006;hb=5743ec9ac1efaa3379dae699acd9213e62c53abe;hp=344b88a6f0e7c3aaca029d736850c441cda662aa;hpb=7297440d795390abd70ddc339b1a81d34f76c953;p=mailer.git diff --git a/inc/handler.php b/inc/handler.php index 344b88a6f0..57da7b6a06 100644 --- a/inc/handler.php +++ b/inc/handler.php @@ -17,7 +17,7 @@ * 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 * + * Copyright (c) 2003 - 2009 by Roland Haeder * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -38,8 +38,7 @@ // Some security stuff... if (!defined('__SECURITY')) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; - require($INC); + die(); } // Error handler function @@ -52,17 +51,8 @@ function __errorHandler ($errno, $errstr, $errfile, $errline) { $errline ); - // Write debug log message - DEBUG_LOG($errfile, $errline, $message, true); - // Output message to user and die - if (EXT_IS_ACTIVE('debug')) { - // Debug extension found! So Output a small message - app_die($errfile, $errline, "Error message written to debug.log. Please try to call the main page to continue."); - } elseif ($GLOBALS['error_handler']['exit_on_error'] === true) { - // No debug extension found, so regular output - debug_report_bug($message); - } + debug_report_bug($message); } // Init error handler