Files
2026-07-13 13:12:17 +08:00

13 lines
189 B
Perl
Executable File

do 'spam-lib.pl';
sub cgi_args
{
my ($cgi) = @_;
if ($cgi =~ /^edit_/) {
# First allowed file, if any
return $access{'file'} ? 'file='.&urlize($access{'file'}) : '';
}
return undef;
}