chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:12:17 +08:00
commit cf8edb9f21
44281 changed files with 1655134 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
do 'firewall-lib.pl';
sub cgi_args
{
my ($cgi) = @_;
if ($cgi eq 'edit_rule.cgi') {
my @tables = grep { &can_edit_table($_->{'name'}) }
&get_iptables_save();
if (@tables) {
my @rules = @{$tables[0]->{'rules'}};
if (@rules) {
return 'table='.&urlize($tables[0]->{'name'}).
'&idx='.$rules[0]->{'index'};
}
return 'table='.&urlize($tables[0]->{'name'}).'&new=1';
}
return 'none';
}
return undef;
}