From 67eb95d7ef58b59491cdbcf3fef77d77ce04da86 Mon Sep 17 00:00:00 2001 From: tokul Date: Mon, 29 Sep 2003 09:23:45 +0000 Subject: [PATCH] Bugfix of 810047 getDayAbrv function should be used to get short names of week git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@5790 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/left_main.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/left_main.php b/src/left_main.php index 89875a5b..eb1b0995 100644 --- a/src/left_main.php +++ b/src/left_main.php @@ -965,7 +965,7 @@ if ($date_format != 6) { $clk = date($hr, time()); break; default: - $clk = substr( getDayName( date( 'w', time() ) ), 0, 3 ) . date( ', ' . $hr, time() ); + $clk = getDayAbrv( date( 'w', time() ) ) . date( ', ' . $hr, time() ); } $clk = str_replace(' ',' ',$clk); -- 2.25.1