don't allow addition of a domain rule template to itself, RT#7514
authorivan <ivan>
Tue, 3 Aug 2010 23:12:06 +0000 (23:12 +0000)
committerivan <ivan>
Tue, 3 Aug 2010 23:12:06 +0000 (23:12 +0000)
httemplate/browse/cgp_rule.html

index 8a427b8..8ea7571 100644 (file)
@@ -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!<A HREF="${p}misc/clone-cgp_rule.html?clone=$t_svcnum;svcnum=$svcnum">!
        ."Add $t_name rule</A><BR>";