]> git.mxchange.org Git - mailer.git/blobdiff - inc/hooks.php
Extension mode added to debug message
[mailer.git] / inc / hooks.php
index 8bc6463e56f97a86ff6865dc4297f7f62bd22022..de633d395603cda1f587f37db6590e62e9049323 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Hooks (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                           *
+ * 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 *
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
-}
-
-// Call-back function for running shutdown functions and close database connection
-function __SHUTDOWN_HOOK () {
-       // Call the filter chain 'shutdown'
-       RUN_FILTER('shutdown', null, false);
-
-       if (SQL_IS_LINK_UP()) {
-               // Close link
-               SQL_CLOSE(__FILE__, __LINE__);
-       } else {
-               // No database link
-               addFatalMessage(getMessage('NO_DB_LINK'));
-       }
+       die();
 }
 
 // [EOF]