mirror of
https://github.com/webmin/webmin.git
synced 2025-07-23 00:30:33 +00:00
15 lines
197 B
Perl
Executable File
15 lines
197 B
Perl
Executable File
|
|
do 'man-lib.pl';
|
|
|
|
sub cgi_args
|
|
{
|
|
my ($cgi) = @_;
|
|
if ($cgi eq 'search.cgi') {
|
|
return 'for=ssh&type=1§ion=man';
|
|
}
|
|
elsif ($cgi eq 'view_man.cgi') {
|
|
return 'page=ssh&sec=1';
|
|
}
|
|
return undef;
|
|
}
|