X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fhooks.php;h=92bcc81a7ba2bfa9a51a46f3df53438f97b68464;hp=48d9e1009bbe0b5c73f5246e2553c3964da6805d;hb=f97a999e0737c0007ae9c3c26dfef49f75a175ac;hpb=b8c86fa12322603c24a88ea2b0fd3dbeba612752 diff --git a/inc/hooks.php b/inc/hooks.php index 48d9e1009b..92bcc81a7b 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 * @@ -33,23 +38,9 @@ // 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); } -// 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] ?>