diff options
author | ivan <ivan> | 2006-03-10 22:30:48 +0000 |
---|---|---|
committer | ivan <ivan> | 2006-03-10 22:30:48 +0000 |
commit | 5f155263a2c9837640d2fab0817d1f36b8cb3f8c (patch) | |
tree | 413ad88fd7a2070d8a704c67c8769991d0adf954 /httemplate/misc | |
parent | b29780b983dd91fb679e8d01b91902b0ce186e9f (diff) |
fix to (hopefully) allow multiple progress-init's in a page, also add second $cgi arg to all these progressbar calls...
Diffstat (limited to 'httemplate/misc')
-rw-r--r-- | httemplate/misc/email_invoice_events.cgi | 2 | ||||
-rw-r--r-- | httemplate/misc/email_invoices.cgi | 2 | ||||
-rw-r--r-- | httemplate/misc/fax_invoice_events.cgi | 2 | ||||
-rw-r--r-- | httemplate/misc/fax_invoices.cgi | 2 | ||||
-rw-r--r-- | httemplate/misc/print_invoice_events.cgi | 2 | ||||
-rw-r--r-- | httemplate/misc/print_invoices.cgi | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/httemplate/misc/email_invoice_events.cgi b/httemplate/misc/email_invoice_events.cgi index 12d58d608..b5e66d5ac 100644 --- a/httemplate/misc/email_invoice_events.cgi +++ b/httemplate/misc/email_invoice_events.cgi @@ -1,6 +1,6 @@ <% -my $server = new FS::UI::Web::JSRPC 'FS::cust_bill_event::process_reemail'; +my $server = new FS::UI::Web::JSRPC 'FS::cust_bill_event::process_reemail', $cgi; $server->process; %> diff --git a/httemplate/misc/email_invoices.cgi b/httemplate/misc/email_invoices.cgi index 0a3978395..bd231261c 100644 --- a/httemplate/misc/email_invoices.cgi +++ b/httemplate/misc/email_invoices.cgi @@ -1,6 +1,6 @@ <% -my $server = new FS::UI::Web::JSRPC 'FS::cust_bill::process_reemail'; +my $server = new FS::UI::Web::JSRPC 'FS::cust_bill::process_reemail', $cgi; $server->process; %> diff --git a/httemplate/misc/fax_invoice_events.cgi b/httemplate/misc/fax_invoice_events.cgi index a8ded0550..9a5e8aaea 100644 --- a/httemplate/misc/fax_invoice_events.cgi +++ b/httemplate/misc/fax_invoice_events.cgi @@ -1,6 +1,6 @@ <% -my $server = new FS::UI::Web::JSRPC 'FS::cust_bill_event::process_refax'; +my $server = new FS::UI::Web::JSRPC 'FS::cust_bill_event::process_refax', $cgi; $server->process; %> diff --git a/httemplate/misc/fax_invoices.cgi b/httemplate/misc/fax_invoices.cgi index f16ba8b5e..24bee7da9 100644 --- a/httemplate/misc/fax_invoices.cgi +++ b/httemplate/misc/fax_invoices.cgi @@ -1,6 +1,6 @@ <% -my $server = new FS::UI::Web::JSRPC 'FS::cust_bill::process_refax'; +my $server = new FS::UI::Web::JSRPC 'FS::cust_bill::process_refax', $cgi; $server->process; %> diff --git a/httemplate/misc/print_invoice_events.cgi b/httemplate/misc/print_invoice_events.cgi index c6a7885a4..3cf4cf7c8 100644 --- a/httemplate/misc/print_invoice_events.cgi +++ b/httemplate/misc/print_invoice_events.cgi @@ -1,6 +1,6 @@ <% -my $server = new FS::UI::Web::JSRPC 'FS::cust_bill_event::process_reprint'; +my $server = new FS::UI::Web::JSRPC 'FS::cust_bill_event::process_reprint', $cgi; $server->process; %> diff --git a/httemplate/misc/print_invoices.cgi b/httemplate/misc/print_invoices.cgi index d7b271c37..6d32eaaac 100644 --- a/httemplate/misc/print_invoices.cgi +++ b/httemplate/misc/print_invoices.cgi @@ -1,6 +1,6 @@ <% -my $server = new FS::UI::Web::JSRPC 'FS::cust_bill::process_reprint'; +my $server = new FS::UI::Web::JSRPC 'FS::cust_bill::process_reprint', $cgi; $server->process; %> |