From 1d0c3f557585a7d1ab319455a5af288f82fedf75 Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Thu, 28 Jun 2012 03:24:09 -0400
Subject: [PATCH] Fix fatal error when date.timezone isn't set (#1488546)

---
 CHANGELOG                       |    1 +
 program/steps/settings/func.inc |    2 --
 2 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/CHANGELOG b/CHANGELOG
index 5cc9abe..170e199 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,7 @@
 CHANGELOG Roundcube Webmail
 ===========================
 
+- Fix fatal error when date.timezone isn't set (#1488546)
 - Update to TinyMCE 3.5.4.1
 - Better icons with distinct shapes for priority columns (#1488377)
 - Show dedicated icon for multipart/report messages (#1488524)
diff --git a/program/steps/settings/func.inc b/program/steps/settings/func.inc
index 8f2528e..57a2819 100644
--- a/program/steps/settings/func.inc
+++ b/program/steps/settings/func.inc
@@ -184,9 +184,7 @@
       $select_timezone = new html_select(array('name' => '_timezone', 'id' => $field_id));
       $select_timezone->add(rcube_label('autodetect'), 'auto');
 
-      $now   = new DateTime();
       $zones = array();
-
       foreach (DateTimeZone::listIdentifiers() as $i => $tzs) {
         try {
           $tz = new DateTimeZone($tzs);

--
Gitblit v1.9.1