1
Scorpiuscat1
Date Display on Xoops

I hate the way XOOPS displays the date.

example: 2006/02/15

I want to change the this to someting more normal

example: 02/15/2006

I have look in the admin panel, but I cannot see anywhere that I can change this.

Ideas?

2
smdcom
Re: Date Display on Xoops

edit file /language/english/global.php

find:
le="color: #000000"><?php //%%%%%% TIME FORMAT SETTINGS %%%%%%// define("_DATESTRING","Y/n/j G:i:s"); define("_MEDIUMDATESTRING","Y/n/j G:i"); define("_SHORTDATESTRING","Y/n/j");


change it to:
le="color: #000000"><?php //%%%%%% TIME FORMAT SETTINGS %%%%%%// define("_DATESTRING","n/j/Y G:i:s"); define("_MEDIUMDATESTRING","n/j/Y G:i"); define("_SHORTDATESTRING","n/j/Y");

3
Scorpiuscat1
Re: Date Display on Xoops

Cool, thanks!!!

That seems easy enough.