summaryrefslogtreecommitdiffstats
path: root/apps/calendar/templates/settings.php
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2011-10-06 11:45:49 +0200
committerBart Visscher <bartv@thisnet.nl>2011-10-06 13:22:36 +0200
commit4786ed321e802f8a63cff2bc4cb36461a3385971 (patch)
tree3cccad8211ff872dcb9251c31a92d9b85d523bed /apps/calendar/templates/settings.php
parentc28f1e0276bef100b88b4df0bd8f2a0d7d888314 (diff)
downloadnextcloud-server-4786ed321e802f8a63cff2bc4cb36461a3385971.tar.gz
nextcloud-server-4786ed321e802f8a63cff2bc4cb36461a3385971.zip
Replace _ in timezone setting with a space
Diffstat (limited to 'apps/calendar/templates/settings.php')
-rw-r--r--apps/calendar/templates/settings.php2
1 files changed, 1 insertions, 1 deletions
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;?>