mirror of
https://github.com/webmin/webmin.git
synced 2025-08-16 14:51:18 +00:00
13 lines
160 B
Perl
Executable File
13 lines
160 B
Perl
Executable File
|
|
do 'usermin-lib.pl';
|
|
|
|
sub cgi_args
|
|
{
|
|
my ($cgi) = @_;
|
|
if ($cgi =~ /^edit_/ || $cgi eq 'index.cgi') {
|
|
# No args needed for sure
|
|
return '';
|
|
}
|
|
return 'none';
|
|
}
|