From d2f84edefd2b7505008401bf5401b304b3121300 Mon Sep 17 00:00:00 2001 From: Luis Lavena Date: Tue, 14 Mar 2017 09:34:13 -0300 Subject: [PATCH] Add `tuc` as Tucuman timezone abbreviation `TUC` is the airport code used for Tucuman, so thought was worth considering it to the same level as `AR`. --- includes/_timezones_setup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/_timezones_setup.php b/includes/_timezones_setup.php index 05ae815..aad19ff 100644 --- a/includes/_timezones_setup.php +++ b/includes/_timezones_setup.php @@ -54,7 +54,7 @@ function parseString($str) { $timezone = "Europe/London"; } - if (preg_match('/(tucumán|tucuman|argentina|ar|art|luis|pablo|bernardo)$/i', $str)) { + if (preg_match('/(tucumán|tucuman|tuc|argentina|ar|art|luis|pablo|bernardo)$/i', $str)) { $timezone = "America/Argentina/Tucuman"; }