diff options
author | ivan <ivan> | 2003-05-10 06:45:45 +0000 |
---|---|---|
committer | ivan <ivan> | 2003-05-10 06:45:45 +0000 |
commit | 75500e2f75a32b3735999eaf5edde3e871911226 (patch) | |
tree | e1ab3c28f76602795d64f413f1b848c62c8cd17b /httemplate/view/cust_pkg.cgi | |
parent | aa8f46a06edce17b919486a62d9e208c1954355a (diff) |
first pass at new package list UI
Diffstat (limited to 'httemplate/view/cust_pkg.cgi')
-rwxr-xr-x | httemplate/view/cust_pkg.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/view/cust_pkg.cgi b/httemplate/view/cust_pkg.cgi index c3880114c..5f0e6bffc 100755 --- a/httemplate/view/cust_pkg.cgi +++ b/httemplate/view/cust_pkg.cgi @@ -71,7 +71,7 @@ print &ntable("#cccccc"), '<TR><TD>', &ntable("#cccccc",2), ( $setup ? time2str("%D",$setup) : "(Not setup)" ), '</TD></TR>'; print '<TR><TD ALIGN="right">Last bill date</TD><TD BGCOLOR="#ffffff">', - ( $cust_pkg->last_bill ? time2str("%D",$cust_pkg->last_bill) : " " ), + ( $cust_pkg->get('last_bill') ? time2str("%D",$cust_pkg->get('last_bill')) : " " ), '</TD></TR>' if $cust_pkg->dbdef_table->column('last_bill'); |