]> git.mxchange.org Git - mailer.git/blobdiff - inc/filter/timezone_filter.php
Added update_year.sh (still not fully flexible) and updated all years with it.
[mailer.git] / inc / filter / timezone_filter.php
index aa4268ea1ac90d99185d6a040bd30c6949410789..5e1a1080402a944a8bbf97414a4090c2b0a6dacc 100644 (file)
@@ -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 - 2015 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,7 +41,7 @@ if (!defined('__SECURITY')) {
 } // END - if
 
 // Filter for setting the timezone
-function FILTER_INIT_TIMEZONE ($data) {
+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')) {
@@ -51,7 +51,7 @@ function FILTER_INIT_TIMEZONE ($data) {
 
        // Return data
        //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Done!');
-       return $data;
+       return $filterData;
 }
 
 // [EOF]