]> git.mxchange.org Git - mailer.git/blobdiff - inc/handler.php
New method generateExtensionInactiveMessage() introduced
[mailer.git] / inc / handler.php
index e1e95237404c8f0a6dd8cef7788a39e43b38ce63..7dd84499a46be738879f49b8030c2d35c69927d8 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Handler-Funktionen (Call-Back)                   *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
+ * 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                  *
@@ -33,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);
 }
 
@@ -41,19 +46,19 @@ 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
-               mxchange_die("Error message written to debug.log. Please try to call <a href=\"{!URL!}\">the main page</a> to continue.");
+               app_die(__FUNCTION__, __LINE__, "Error message written to debug.log. Please try to call <a href=\"{!URL!}\">the main page</a> to continue.");
        } else {
                // No debug extension found, so regular output
                debug_report_bug($msg);