@LenSorry, was mixed up, it's not the feedback, but the accounting section I usually take the date from. Your script Script uses something like:
---
my $nowtime = strftime "%a %b %d, %I:%M %p", gmtime(time + ($config{'systemtime'}* 3600 ));
-
-
New Account Created:::Fri Oct 16, 11:26 AM:::0.00:::New Account Created:::0.00
---
meaning, that you would have to adopt the "strftime" line (as you probably already did) to display the Year, if required
---
print NEWACCOUNT "$trans$fielddelimiter$nowtime$fielddelimiter$amount$fielddelimiter$details$fielddelimiter$balance\n";
close NEWACCOUNT;
---
and move the content of:
$trans$fielddelimiter$nowtime$fielddelimiter$amount$fielddelimiter$details$fielddelimiter$balance\n";
to something like
---
$nowtime$fielddelimiter$trans$fielddelimiter$amount$fielddelimiter$details$fielddelimiter$balance\n";
---
Still, you would need to filter out exept the date "$nowtime" to only display the first, b.Ex., 11 digits (Feb.09.2010), using a regex or some other routine. I myself am unfamiliar to "$fielddelimiter" Element reading.
This may have some effect on other parts of the script, wherever this line will be read and/or used to persent the content somewhere, so be careful before just screwing up...
Homer
you may reach me directly, or this could get to long here...
If you don't know where you're going, any road will get you there.