mirror of
https://github.com/webmin/webmin.git
synced 2026-02-03 14:13:29 +00:00
14 lines
229 B
Perl
Executable File
14 lines
229 B
Perl
Executable File
|
|
do 'grub-lib.pl';
|
|
|
|
sub cgi_args
|
|
{
|
|
my ($cgi) = @_;
|
|
if ($cgi eq 'edit_title.cgi') {
|
|
my $conf = &get_menu_config();
|
|
my @titles = &find("title", $conf);
|
|
return @titles ? 'idx='.$titles[0]->{'index'} : 'new=1';
|
|
}
|
|
return undef;
|
|
}
|