BUG10753: Fix servicegroups to have only max. 15 services per protocol

This commit is contained in:
Alexander Marx
2015-02-25 08:09:05 +01:00
parent 0cf8de0502
commit 85abeb1376

View File

@@ -728,10 +728,10 @@ if ($fwhostsettings{'ACTION'} eq 'saveservicegrp')
}
}
}
if ($tcpcounter > 15){
if ($tcpcounter > 14){
$errormessage=$Lang::tr{'fwhost err maxservicetcp'};
}
if ($udpcounter > 15){
if ($udpcounter > 14){
$errormessage=$Lang::tr{'fwhost err maxserviceudp'};
}
$tcpcounter=0;