From 32ec5f1359303ba44ec0e8803dde2d682937f2ac Mon Sep 17 00:00:00 2001 From: pdontthink Date: Sat, 16 Jan 2021 02:51:18 +0000 Subject: [PATCH] Fix for unknown broken mailer using "UTC" in Date header git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@14878 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/date.php | 1 + 1 file changed, 1 insertion(+) diff --git a/functions/date.php b/functions/date.php index dbd482ab..0cd88d50 100644 --- a/functions/date.php +++ b/functions/date.php @@ -58,6 +58,7 @@ function getGMTSeconds($stamp, $tzc) { $tzc = '-0400'; break; case 'GMT': + case 'UTC': $tzc = '+0000'; break; case 'BST': -- 2.25.1