Fixed logfile writing in installation phase, .revision is now ignored
[mailer.git] / inc / hooks.php
index 48d9e1009bbe0b5c73f5246e2553c3964da6805d..ccc0927a3bc10d4f17cc42a080a9fda97cbca7aa 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Hooks (Call-Back)                                *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision:: 856                                                    $ *
+ * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. Mär 2009)              $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author:: stelzi                                                   $ *
+ * 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                  *
@@ -37,19 +42,5 @@ if (!defined('__SECURITY')) {
        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__);
-       } elseif (!isInstalling()) {
-               // No database link
-               addFatalMessage(__FILE__, __LINE__, getMessage('NO_DB_LINK_SHUTDOWN'));
-       }
-}
-
 // [EOF]
 ?>