[freeside-commits] freeside/httemplate/browse cgp_rule.html, 1.1.2.6, 1.1.2.7
Ivan,,,
ivan at wavetail.420.am
Tue Aug 3 16:12:09 PDT 2010
Update of /home/cvs/cvsroot/freeside/httemplate/browse
In directory wavetail.420.am:/tmp/cvs-serv8105
Modified Files:
Tag: FREESIDE_1_9_BRANCH
cgp_rule.html
Log Message:
don't allow addition of a domain rule template to itself, RT#7514
Index: cgp_rule.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/browse/cgp_rule.html,v
retrieving revision 1.1.2.6
retrieving revision 1.1.2.7
diff -u -w -d -r1.1.2.6 -r1.1.2.7
--- cgp_rule.html 7 Jun 2010 02:39:54 -0000 1.1.2.6
+++ cgp_rule.html 3 Aug 2010 23:12:07 -0000 1.1.2.7
@@ -44,11 +44,12 @@
if ( $part_svc->svcdb eq 'svc_domain' ) {
- #areyousure for adding these?
+ #XXX add areyousure javscript confirmation for adding these
foreach my $line ( FS::Conf->new->config('cgp_rule-domain_templates') ) {
$line =~ /^\s*(\d+)\s+(.+)\s*$/ or next;
my($t_svcnum, $t_name) = ( $1, $2 );
+ next if $t_svcnum == $svcnum;
$html_init .=
qq!<A HREF="${p}misc/clone-cgp_rule.html?clone=$t_svcnum;svcnum=$svcnum">!
."Add $t_name rule</A><BR>";
More information about the freeside-commits
mailing list