From 4786ed321e802f8a63cff2bc4cb36461a3385971 Mon Sep 17 00:00:00 2001
From: Bart Visscher <bartv@thisnet.nl>
Date: Thu, 6 Oct 2011 11:45:49 +0200
Subject: Replace _ in timezone setting with a space

---
 apps/calendar/templates/settings.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'apps/calendar/templates/settings.php')

diff --git a/apps/calendar/templates/settings.php b/apps/calendar/templates/settings.php
index 913e54dd8fc..c6664d512dc 100644
--- a/apps/calendar/templates/settings.php
+++ b/apps/calendar/templates/settings.php
@@ -25,7 +25,7 @@ OC_UTIL::addStyle('', 'jquery.multiselect');
 				if ($continent!="") echo '</optgroup>';
 				echo '<optgroup label="'.$ex[0].'">';
 			endif;
-			$city=$ex[1];
+			$city=strtr($ex[1], '_', ' ');
 			$continent=$ex[0];
 			echo '<option value="'.$timezone.'"'.($_['timezone'] == $timezone?' selected="selected"':'').'>'.$city.'</option>';
                 endforeach;?>
-- 
cgit v1.2.3