mirror of
https://github.com/webmin/webmin.git
synced 2025-07-20 16:48:46 +00:00
14 lines
247 B
Perl
Executable File
14 lines
247 B
Perl
Executable File
|
|
do 'phpini-lib.pl';
|
|
|
|
sub cgi_args
|
|
{
|
|
my ($cgi) = @_;
|
|
my @files = &list_php_configs();
|
|
if ($cgi eq 'list_ini.cgi' || $cgi eq 'edit_manual.cgi' ||
|
|
$cgi =~ /^edit_/) {
|
|
return @files ? 'file='.&urlize($files[0]->[0]) : 'none';
|
|
}
|
|
return undef;
|
|
}
|