diff options
author | ivan <ivan> | 2010-08-03 23:12:06 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-08-03 23:12:06 +0000 |
commit | dfb6ad5c96f3a18553ef4b0e81d51c6bc5d44c92 (patch) | |
tree | 3327f2ecc3350a627c9fc544926c1e1e614c3c9d /httemplate/browse | |
parent | e3a938e4a47e4426122932a4adfa944f83abdabe (diff) |
don't allow addition of a domain rule template to itself, RT#7514
Diffstat (limited to 'httemplate/browse')
-rw-r--r-- | httemplate/browse/cgp_rule.html | 3 |
1 files changed, 2 insertions, 1 deletions
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!<A HREF="${p}misc/clone-cgp_rule.html?clone=$t_svcnum;svcnum=$svcnum">! ."Add $t_name rule</A><BR>"; |