Gossamer Forum
Home : Products : Links 2.0 : Customization :

Date Format

Quote Reply
Date Format
I know that there are tons of posts on how to change the date format, I found one, but when i modified my scripts it didn't work..

So if anyone knows how to modify from the date printing like this " 7-Mar-2003 " to this " Mach 7, 2003 "



Thanks

intellie Crazy
Quote Reply
Re: [intellie] Date Format In reply to
i have the following from eliot/stealth

Code:
sub site_html_link {
# --------------------------------------------------------
# This routine is used to display what a link should look
# like.

my %rec = @_;
# eliot's mod for showing date Jun 6, 1949
my $showdate = &long_date($rec{'Date'});


then use <%showdate%> in the link.html


Gene
"The older I get, the more I admire competence, just simple competence in any field from adultery to zoology."
Quote Reply
Re: [esm] Date Format In reply to
Thanks a lot again!

Works perfect!



intellie Crazy