X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fhooks.php;h=2f14ff0f470df2d993f40f47e7e41dea2a750ab1;hb=28d2461a2288bfe7dca2907e471303e230c99b52;hp=592c24d5dd687e7d6897b622e436bd1a0efa3170;hpb=4c83f0cc7459cad9ec9c1c68963f5365155ee935;p=mailer.git diff --git a/inc/hooks.php b/inc/hooks.php index 592c24d5dd..2f14ff0f47 100644 --- a/inc/hooks.php +++ b/inc/hooks.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * 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 * * 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(getMessage('NO_DB_LINK_SHUTDOWN')); - } -} - // [EOF] ?>