CRM-18232 Handle 'etc/UTF' timezone
authoreileenmcnaugton <eileen@fuzion.co.nz>
Mon, 14 Mar 2016 09:19:26 +0000 (22:19 +1300)
committereileenmcnaugton <eileen@fuzion.co.nz>
Mon, 14 Mar 2016 09:21:18 +0000 (22:21 +1300)
CRM/Utils/System/Base.php

index 292d18fa529f0eb49e62ef755fa841837ea34c04..b3f8dcb4435bd0d70dadc74ea61f3787d5e7960f 100644 (file)
@@ -691,7 +691,7 @@ abstract class CRM_Utils_System_Base {
   public function getTimeZoneOffset() {
     $timezone = $this->getTimeZoneString();
     if ($timezone) {
-      if ($timezone == 'UTC') {
+      if ($timezone == 'UTC' || $timezone == 'Etc/UTC') {
         // CRM-17072 Let's short-circuit all the zero handling & return it here!
         return '+00:00';
       }