summaryrefslogtreecommitdiff
path: root/httemplate/search
diff options
context:
space:
mode:
authorivan <ivan>2001-12-18 07:12:00 +0000
committerivan <ivan>2001-12-18 07:12:00 +0000
commitbcff88b04574a882c3b44f55f64d15a8f0136498 (patch)
treecba9c88621e951bee993cae1bad3afde53e9fd56 /httemplate/search
parenta44aaabe9b21f0e474f7317852235600afcc5733 (diff)
really working dates on package browse. ouch.
Diffstat (limited to 'httemplate/search')
-rwxr-xr-xhttemplate/search/cust_pkg.cgi13
1 files changed, 6 insertions, 7 deletions
diff --git a/httemplate/search/cust_pkg.cgi b/httemplate/search/cust_pkg.cgi
index 137dc5f19..dabcf46fb 100755
--- a/httemplate/search/cust_pkg.cgi
+++ b/httemplate/search/cust_pkg.cgi
@@ -1,5 +1,5 @@
<%
-# <!-- $Id: cust_pkg.cgi,v 1.11 2001-12-18 07:08:16 ivan Exp $ -->
+# <!-- $Id: cust_pkg.cgi,v 1.12 2001-12-18 07:12:00 ivan Exp $ -->
use strict;
use vars qw ( $cgi @cust_pkg $sortby $query %part_pkg
@@ -158,23 +158,22 @@ END
) {
my($cust_main)=qsearchs('cust_main',{'custnum'=>$cust_pkg->custnum});
my($pkgnum, $setup, $bill, $susp, $expire, $cancel,
- $custnum, $last, $first, $company
- ) = (
+ $custnum, $last, $first, $company ) = (
$cust_pkg->pkgnum,
$cust_pkg->getfield('setup')
? time2str("%D", $cust_pkg->getfield('setup') )
: '',
$cust_pkg->getfield('bill')
- ? time2str("%D", $cust_pkg->getfield('bill') ),
+ ? time2str("%D", $cust_pkg->getfield('bill') )
: '',
$cust_pkg->getfield('susp')
- ? time2str("%D", $cust_pkg->getfield('susp') ),
+ ? time2str("%D", $cust_pkg->getfield('susp') )
: '',
$cust_pkg->getfield('expire')
- ? time2str("%D", $cust_pkg->getfield('expire') ),
+ ? time2str("%D", $cust_pkg->getfield('expire') )
: '',
$cust_pkg->getfield('cancel')
- ? time2str("%D", $cust_pkg->getfield('cancel') ),
+ ? time2str("%D", $cust_pkg->getfield('cancel') )
: '',
$cust_pkg->custnum,
$cust_main ? $cust_main->last : '',