[freeside-commits] branch FREESIDE_3_BRANCH updated. 0352ff06405c1ced9be791c9c1ce6d72e5a2a71f
Ivan
ivan at 420.am
Mon Jan 27 17:07:37 PST 2014
The branch, FREESIDE_3_BRANCH has been updated
via 0352ff06405c1ced9be791c9c1ce6d72e5a2a71f (commit)
from a119361314fa44afc1af3a5a89f0296cca16e20c (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 0352ff06405c1ced9be791c9c1ce6d72e5a2a71f
Author: Ivan Kohler <ivan at freeside.biz>
Date: Mon Jan 27 17:07:34 2014 -0800
fix fallout: allowing selectable choice for arbitrary things broke classic selectable choice for domains, RT#25623
diff --git a/httemplate/edit/elements/svc_Common.html b/httemplate/edit/elements/svc_Common.html
index 4131508..fc29327 100644
--- a/httemplate/edit/elements/svc_Common.html
+++ b/httemplate/edit/elements/svc_Common.html
@@ -126,7 +126,8 @@
'classnum'=>$columndef->columnvalue
};
- } elsif ( $flag eq 'S' ) { #selectable choice
+ } elsif ( $flag eq 'S' #selectable choice
+ && $f->{type} !~ /^select-svc(-domain|_pbx)$/ ) {
$f->{type} = 'select';
$f->{options} = [ split( /\s*,\s*/,
$columndef->columnvalue)
-----------------------------------------------------------------------
Summary of changes:
httemplate/edit/elements/svc_Common.html | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
More information about the freeside-commits
mailing list