Bugfix of 810047
authortokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 29 Sep 2003 09:23:45 +0000 (09:23 +0000)
committertokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 29 Sep 2003 09:23:45 +0000 (09:23 +0000)
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

index 89875a5b95b5dd73a0cb4bb3c7fdca268a4126c0..eb1b0995a2d54d9c55cfd183fd4282283dd0126b 100644 (file)
@@ -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(' ','&nbsp;',$clk);