From: ivan Date: Tue, 3 Aug 2010 23:12:07 +0000 (+0000) Subject: don't allow addition of a domain rule template to itself, RT#7514 X-Git-Tag: freeside_1_9_5~91 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=492f852b74ab2e2d7a059ad034e42c438d1745e4 don't allow addition of a domain rule template to itself, RT#7514 --- diff --git a/httemplate/browse/cgp_rule.html b/httemplate/browse/cgp_rule.html index 8a427b828..8ea7571d0 100644 --- a/httemplate/browse/cgp_rule.html +++ b/httemplate/browse/cgp_rule.html @@ -44,11 +44,12 @@ my $html_init = 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!! ."Add $t_name rule
";