[freeside-commits] branch FREESIDE_2_3_BRANCH updated. cd413027713c39ff57b4d0fc5b79a91d6e2931df
Ivan
ivan at 420.am
Thu Oct 10 08:43:41 PDT 2013
The branch, FREESIDE_2_3_BRANCH has been updated
via cd413027713c39ff57b4d0fc5b79a91d6e2931df (commit)
from 5dce18294d8c98e87d60b03708f6c1b642a32e5b (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit cd413027713c39ff57b4d0fc5b79a91d6e2931df
Author: Ivan Kohler <ivan at freeside.biz>
Date: Thu Oct 10 08:43:38 2013 -0700
backport from 3/master to fix svc_cable editing, RT#22009
diff --git a/httemplate/view/elements/svc_edit_link.html b/httemplate/view/elements/svc_edit_link.html
index f525f1f..5438ed2 100644
--- a/httemplate/view/elements/svc_edit_link.html
+++ b/httemplate/view/elements/svc_edit_link.html
@@ -18,8 +18,8 @@ function areyousure_delete() {
my %opt = @_;
my $svc_x = $opt{'svc'} or die "'svc' required";
my $svcdb = $opt{'table'} || $svc_x->table;
-my $edit_url = $opt{'edit_url'} ||
- $p . 'edit/' . $svcdb . '.cgi?' . $svc_x->svcnum;
+my $edit_url = ($opt{'edit_url'} ||
+ $p . 'edit/' . $svcdb . '.cgi?' ). $svc_x->svcnum;
my $cancel_url = $p . 'misc/unprovision.cgi?' . $svc_x->svcnum;
my $cust_svc = $svc_x->cust_svc; # always exists
my $cancel_date = $cust_svc->pkg_cancel_date;
-----------------------------------------------------------------------
Summary of changes:
httemplate/view/elements/svc_edit_link.html | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
More information about the freeside-commits
mailing list