diff options
author | Ivan Kohler <ivan@freeside.biz> | 2016-02-05 10:28:11 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2016-02-05 10:28:11 -0800 |
commit | fcd7e712ea5286c418dd4f77c4faa41544d95f0b (patch) | |
tree | e56f90652077becb7ac097f3380955b620acbd5f | |
parent | f19956cf9995fee8897542fafa6c7ec13afde381 (diff) |
fix 'start billing' link for some weird situation that can't handle an extra ; ? RT#40240
-rw-r--r-- | httemplate/view/cust_main/packages/status.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/httemplate/view/cust_main/packages/status.html b/httemplate/view/cust_main/packages/status.html index 1d3de85b7..001c12876 100644 --- a/httemplate/view/cust_main/packages/status.html +++ b/httemplate/view/cust_main/packages/status.html @@ -682,7 +682,7 @@ sub pkg_resume_link { sub pkg_unhold_link { include( '/elements/popup_link-cust_pkg.html', - 'action' => $p. 'misc/unhold_pkg.html?', + 'action' => $p. 'misc/unhold_pkg.html', 'label' => emt('Start billing'), 'actionlabel' => emt('Start billing'), 'color' => '#00CC00', @@ -731,7 +731,7 @@ sub pkg_expire_link { sub pkg_change_later_link { my $cust_pkg = shift; include( '/elements/popup_link-cust_pkg.html', - 'action' => $p . 'misc/change_pkg.cgi?', + 'action' => $p . 'misc/change_pkg.cgi', 'label' => emt('Reschedule'), 'actionlabel' => emt('Edit scheduled change for'), 'cust_pkg' => $cust_pkg, @@ -743,7 +743,7 @@ sub pkg_change_later_link { sub pkg_change_start_link { my $cust_pkg = shift; include( '/elements/popup_link-cust_pkg.html', - 'action' => $p . 'misc/change_pkg_start.html?', + 'action' => $p . 'misc/change_pkg_start.html', 'label' => emt('Set start date'), 'actionlabel' => emt('Set start of billing for'), 'cust_pkg' => $cust_pkg, |