diff options
author | Mark Wells <mark@freeside.biz> | 2016-09-15 13:11:55 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2016-09-15 13:13:38 -0700 |
commit | def740e695b1eb4a0bae3b55a8158a042cf8d7d6 (patch) | |
tree | 062731e303bcae18e2177c71784913c8a79a55ef /httemplate/misc | |
parent | 1eaaba954219aea4deb90cbde0de052d07962d54 (diff) |
replace FS::CGI::header function with header-popup component, related to #71249
Diffstat (limited to 'httemplate/misc')
-rwxr-xr-x | httemplate/misc/delete-rate_detail.html | 2 | ||||
-rwxr-xr-x | httemplate/misc/disable-cust_location.cgi | 2 | ||||
-rwxr-xr-x | httemplate/misc/process/bulk_pkg_increment_bill.cgi | 2 | ||||
-rwxr-xr-x | httemplate/misc/process/cancel_pkg.html | 2 | ||||
-rw-r--r-- | httemplate/misc/process/change_pkg_contact.html | 2 | ||||
-rwxr-xr-x | httemplate/misc/process/delay_susp_pkg.html | 2 | ||||
-rwxr-xr-x | httemplate/misc/process/recharge_svc.html | 2 | ||||
-rwxr-xr-x | httemplate/misc/process/recharge_svc.new | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/httemplate/misc/delete-rate_detail.html b/httemplate/misc/delete-rate_detail.html index b4d31b379..d75ebaa23 100755 --- a/httemplate/misc/delete-rate_detail.html +++ b/httemplate/misc/delete-rate_detail.html @@ -1,7 +1,7 @@ % if ( $error ) { % errorpage($error); % } else { -<% header('Rate deleted') %> +<& /elements/header-popup.html, 'Rate deleted' &> <SCRIPT TYPE="text/javascript"> topreload(); </SCRIPT> diff --git a/httemplate/misc/disable-cust_location.cgi b/httemplate/misc/disable-cust_location.cgi index 677f0b891..886d8369c 100755 --- a/httemplate/misc/disable-cust_location.cgi +++ b/httemplate/misc/disable-cust_location.cgi @@ -1,4 +1,4 @@ -<% header("Location disabled") %> +<& /elements/header-popup.html, "Location disabled" &> <SCRIPT TYPE="text/javascript"> topreload(); </SCRIPT> diff --git a/httemplate/misc/process/bulk_pkg_increment_bill.cgi b/httemplate/misc/process/bulk_pkg_increment_bill.cgi index 8da849508..d89f49120 100755 --- a/httemplate/misc/process/bulk_pkg_increment_bill.cgi +++ b/httemplate/misc/process/bulk_pkg_increment_bill.cgi @@ -2,7 +2,7 @@ % $cgi->param('error', $error); <% $cgi->redirect(popurl(2). 'bulk_pkg_increment_bill.cgi?'. $cgi->query_string ) %> %} else { -<% header('Packages Adjusted') %> +<& /elements/header-popup.html, 'Packages Adjusted' &> <SCRIPT TYPE="text/javascript"> topreload(); </SCRIPT> diff --git a/httemplate/misc/process/cancel_pkg.html b/httemplate/misc/process/cancel_pkg.html index 46ba06a6d..b8be27113 100755 --- a/httemplate/misc/process/cancel_pkg.html +++ b/httemplate/misc/process/cancel_pkg.html @@ -1,4 +1,4 @@ -<% header(emt("Package $past_method")) %> +<& /elements/header-popup.html, emt("Package $past_method") &> <SCRIPT TYPE="text/javascript"> topreload(); </SCRIPT> diff --git a/httemplate/misc/process/change_pkg_contact.html b/httemplate/misc/process/change_pkg_contact.html index 5bf896200..fdd42c236 100644 --- a/httemplate/misc/process/change_pkg_contact.html +++ b/httemplate/misc/process/change_pkg_contact.html @@ -1,4 +1,4 @@ -<% header(emt("Package contact $past_method")) %> +<& /elements/header-popup.html, emt("Package contact $past_method") &> <SCRIPT TYPE="text/javascript"> topreload(); </SCRIPT> diff --git a/httemplate/misc/process/delay_susp_pkg.html b/httemplate/misc/process/delay_susp_pkg.html index 15a3c963c..006465ca7 100755 --- a/httemplate/misc/process/delay_susp_pkg.html +++ b/httemplate/misc/process/delay_susp_pkg.html @@ -1,4 +1,4 @@ -<% header($msg) %> +<& /elements/header-popup.html, $msg &> <SCRIPT TYPE="text/javascript"> topreload(); </SCRIPT> diff --git a/httemplate/misc/process/recharge_svc.html b/httemplate/misc/process/recharge_svc.html index 88a1f7f36..b8969a6e5 100755 --- a/httemplate/misc/process/recharge_svc.html +++ b/httemplate/misc/process/recharge_svc.html @@ -2,7 +2,7 @@ % $cgi->param('error', $error); <% $cgi->redirect(popurl(2). "recharge_svc.html?". $cgi->query_string ) %> %} else { -<% header("Package recharged") %> +<& /elements/header-popup.html, "Package recharged" &> <SCRIPT TYPE="text/javascript"> topreload(); </SCRIPT> diff --git a/httemplate/misc/process/recharge_svc.new b/httemplate/misc/process/recharge_svc.new index bc916e5da..b73a76fb1 100755 --- a/httemplate/misc/process/recharge_svc.new +++ b/httemplate/misc/process/recharge_svc.new @@ -75,7 +75,7 @@ %} %$dbh->commit or die $dbh->errstr if $oldAutoCommit; % -<% header("Package recharged") %> +<& /elements/header-popup.html, "Package recharged" &> <SCRIPT TYPE="text/javascript"> window.top.location.reload(); </SCRIPT> |