summaryrefslogtreecommitdiff
path: root/httemplate/misc/bill.cgi
diff options
context:
space:
mode:
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;