From 8381c2b58b46b87a3ec5ef3fe1289feeaf6e7512 Mon Sep 17 00:00:00 2001 From: Noah Bass Date: Thu, 8 Jan 2015 14:09:27 -0500 Subject: [PATCH] update timezone names --- src/Http/Controllers/SetupController.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Http/Controllers/SetupController.php b/src/Http/Controllers/SetupController.php index b44dac6c..2ac4f043 100644 --- a/src/Http/Controllers/SetupController.php +++ b/src/Http/Controllers/SetupController.php @@ -65,6 +65,8 @@ class SetupController extends Controller // Remove region name and add a sample time $timezones[$name][$timezone] = substr($timezone, strlen($name) + 1).' - '.$time->format('H:i').$ampm; + + $timezones[$name] = str_replace('_', ' ', $timezones[$name]); } }