diff options
author | ivan <ivan> | 2002-06-10 19:30:06 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-06-10 19:30:06 +0000 |
commit | 0fbc0c140e21f1d2d0b422607ab0754a07f3ef53 (patch) | |
tree | ac21c69adb646f6c1f73a18f523d81b688a0fb93 /httemplate | |
parent | bdcc6cb95cadf46e4b71e3967de41ccd35f2f047 (diff) |
add small time display to dates
Diffstat (limited to 'httemplate')
-rwxr-xr-x | httemplate/view/cust_main.cgi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/httemplate/view/cust_main.cgi b/httemplate/view/cust_main.cgi index 52d85deff..7beba8375 100755 --- a/httemplate/view/cust_main.cgi +++ b/httemplate/view/cust_main.cgi @@ -364,7 +364,8 @@ foreach my $package (@packages) { for ( qw( setup bill susp expire cancel ) ) { print "<TD ROWSPAN=$rowspan><FONT SIZE=-1>", ( $package->getfield($_) - ? time2str("%D", $package->getfield($_) ) + ? time2str("%D<BR><FONT SIZE=-2>%r %z</FONT>", + $package->getfield($_) ) : ' ' ), '</FONT></TD>', ; |