From b0dd5d00aa1237c4d8d0b32e01327e43f699a9c1 Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Fri, 25 Oct 2013 14:24:58 +1300 Subject: [PATCH] CRM-9683 - move timestamp setting inside !initialized fn --- civicrm.module | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/civicrm.module b/civicrm.module index 0d10b1bc7..779ab3e4a 100644 --- a/civicrm.module +++ b/civicrm.module @@ -305,8 +305,9 @@ function civicrm_initialize() { drupal_add_css($path . '/filter.css'); } } + CRM_Core_Config::singleton()->userSystem->setMySQLTimeZone(); } - $config->userSystem->setMySQLTimeZone(); + return TRUE; }