Files
webmin/spam/cgi_args.pl
Jamie Cameron 9dbd5db2c9 Fix permissions
2009-07-20 23:42:32 -07: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;
}