diff options
author | mark <mark> | 2010-08-19 20:21:04 +0000 |
---|---|---|
committer | mark <mark> | 2010-08-19 20:21:04 +0000 |
commit | a567bc97334064af26655c1dce66e534e9d5d9cc (patch) | |
tree | aa28d8b0dd67ceb463467062ebe41b87bbd27c87 /httemplate/misc | |
parent | 4117c20f85ce085d7dd42b8970ce9c65b95d7e27 (diff) |
fix my mistake
Diffstat (limited to 'httemplate/misc')
-rw-r--r-- | httemplate/misc/order_pkg.html | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/httemplate/misc/order_pkg.html b/httemplate/misc/order_pkg.html index 2511a3deb..8479a7573 100644 --- a/httemplate/misc/order_pkg.html +++ b/httemplate/misc/order_pkg.html @@ -129,9 +129,8 @@ my $pkgpart = scalar($cgi->param('pkgpart')); my $format = $date_format. ' %T %z (%Z)'; #false laziness w/REAL_cust_pkg.cgi? my $start_date = ''; -if(! $conf->exists('order_pkg-no_start_date') ) { - warn "foo"; - $cust_main->next_bill_date; +if( ! $conf->exists('order_pkg-no_start_date') ) { + $start_date = $cust_main->next_bill_date; $start_date = $start_date ? time2str($format, $start_date) : ''; } |