X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Ffilter%2Ftimezone_filter.php;h=9d76dbb469f939387ec71dd9762e62cdae6fe42e;hb=6b1e55213d76a67e9aa3d9f1e4dcb55e0bbf12ee;hp=7ff31c151b7e433d9f7cd8d7bb959dd379a75fbd;hpb=24dfd21baed6a9a112992bdabf7da96576012bc4;p=mailer.git diff --git a/inc/filter/timezone_filter.php b/inc/filter/timezone_filter.php index 7ff31c151b..9d76dbb469 100644 --- a/inc/filter/timezone_filter.php +++ b/inc/filter/timezone_filter.php @@ -16,8 +16,8 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2011 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2013 by Mailer Developer Team * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -41,12 +41,17 @@ if (!defined('__SECURITY')) { } // END - if // Filter for setting the timezone -function FILTER_INIT_TIMEZONE () { +function FILTER_INIT_TIMEZONE ($filterData) { // Just set it if the required function is there + //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Called!'); if (function_exists('date_default_timezone_set')) { // CFG: TIME-ZONE date_default_timezone_set(getConfig('timezone')); } // END - if + + // Return data + //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Done!'); + return $filterData; } // [EOF]