Jump to content

Upcctns squirrel mail date issue: Difference between revisions

From TetraWiki
Rakesh (talk | contribs)
Created page with " '''Scenario:''' In Squirrel Mail, it was only displaying date but not the time. '''What was required:''' Client wanted to display both date and time in his Squirrel Mail. ..."
 
Rakesh (talk | contribs)
No edit summary
Line 13: Line 13:
-----------------------------
-----------------------------
  $date_format = _("M j, Y");
  $date_format = _("M j, Y");
-----------------------------
 


To
To
--------------------------------------
--------------------------------------
  $date_format = _("D, M j, Y g:i a");
  $date_format = _("D, M j, Y g:i a");
--------------------------------------
 
 
Here is link for date format
-------------------------------------------
http://php.net/manual/en/function.date.php
 


Then reload the "httpd" Daemon
Then reload the "httpd" Daemon


/etc/init.d/httpd reload
/etc/init.d/httpd reload

Revision as of 13:06, 5 April 2014

Scenario: In Squirrel Mail, it was only displaying date but not the time.


What was required: Client wanted to display both date and time in his Squirrel Mail.


We made some modification in "/usr/share/squirrelmail/functions/date.php" file, we changed the value for "date_format" entry in "getDateString" function.

From


$date_format = _("M j, Y");


To


$date_format = _("D, M j, Y g:i a");


Here is link for date format


http://php.net/manual/en/function.date.php


Then reload the "httpd" Daemon

/etc/init.d/httpd reload