summaryrefslogtreecommitdiff
path: root/httemplate/misc/bill.cgi
diff options
context:
space:
mode:
authorjeff <jeff>2006-08-26 23:15:14 +0000
committerjeff <jeff>2006-08-26 23:15:14 +0000
commit6af1b1bfa25e5ececef5e0dcd38b55917121cee2 (patch)
treecb81deb99bee814a037fd866fa10981ae459472f /httemplate/misc/bill.cgi
parent62ee3858ef853cb2b4f1a6cd98f8a608e7d11d7d (diff)
batch refactor continued
Diffstat (limited to 'httemplate/misc/bill.cgi')
-rwxr-xr-xhttemplate/misc/bill.cgi4
1 files changed, 3 insertions, 1 deletions
diff --git a/httemplate/misc/bill.cgi b/httemplate/misc/bill.cgi
index 1532a44eb..6e4cc265d 100755
--- a/httemplate/misc/bill.cgi
+++ b/httemplate/misc/bill.cgi
@@ -1,5 +1,4 @@
%
-%
%#untaint custnum
%my($query) = $cgi->keywords;
%$query =~ /^(\d*)$/;
@@ -7,6 +6,8 @@
%my $cust_main = qsearchs('cust_main',{'custnum'=>$custnum});
%die "Can't find customer!\n" unless $cust_main;
%
+%my $conf = new FS::Conf;
+%
%my $error = $cust_main->bill(
%# 'time'=>$time
% );
@@ -23,6 +24,7 @@
% #'report_badcard'=> 'yes',
% #'retry_card' => 'yes',
% 'retry' => 'yes',
+% 'realtime' => $conf->exists('realtime-backend'),
% );
%}
%#&eidiot($error) if $error;