]> source.dussan.org Git - nextcloud-server.git/commitdiff
Implement timezone fix from Stephen Rees-Carter
authorBart Visscher <bartv@thisnet.nl>
Thu, 6 Oct 2011 09:14:07 +0000 (11:14 +0200)
committerBart Visscher <bartv@thisnet.nl>
Thu, 6 Oct 2011 11:22:36 +0000 (13:22 +0200)
apps/calendar/templates/settings.php

index 19a1a543b4613e10f51492bcea357f08447ec9fe..913e54dd8fc689e470b688ac5fe736f938015900 100644 (file)
@@ -16,16 +16,18 @@ OC_UTIL::addStyle('', 'jquery.multiselect');
                 <?php
                $continent = '';
                foreach($_['timezones'] as $timezone):
-                       if ( preg_match( '/^(America|Antartica|Arctic|Asia|Atlantic|Europe|Indian|Pacific)\//', $timezone ) ):
-                               $ex=explode('/', $timezone, 2);//obtain continent,city
-                               if ($continent!=$ex[0]):
-                                       if ($continent!="") echo '</optgroup>';
-                                       echo '<optgroup label="'.$ex[0].'">';
-                               endif;
-                               $city=$ex[1];
-                               $continent=$ex[0];
-                               echo '<option value="'.$timezone.'"'.($_['timezone'] == $timezone?' selected="selected"':'').'>'.$city.'</option>';
+                       $ex=explode('/', $timezone, 2);//obtain continent,city
+                       if (!isset($ex[1])) {
+                               $ex[1] = $ex[0];
+                               $ex[0] = "Other";
+                       }
+                       if ($continent!=$ex[0]):
+                               if ($continent!="") echo '</optgroup>';
+                               echo '<optgroup label="'.$ex[0].'">';
                        endif;
+                       $city=$ex[1];
+                       $continent=$ex[0];
+                       echo '<option value="'.$timezone.'"'.($_['timezone'] == $timezone?' selected="selected"':'').'>'.$city.'</option>';
                 endforeach;?>
                 </select></td></tr>