From fcd7e712ea5286c418dd4f77c4faa41544d95f0b Mon Sep 17 00:00:00 2001 From: Ivan Kohler Date: Fri, 5 Feb 2016 10:28:11 -0800 Subject: [PATCH] fix 'start billing' link for some weird situation that can't handle an extra ; ? RT#40240 --- httemplate/view/cust_main/packages/status.html | 6 +++--- 1 file 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, -- 2.11.0