Files
webmin/ppp-client/cgi_args.pl
2009-06-05 20:00:36 +00:00

13 lines
186 B
Perl

do 'ppp-client-lib.pl';
sub cgi_args
{
my ($cgi) = @_;
if ($cgi eq 'edit.cgi') {
my $conf = &get_config();
return @$conf ? 'idx='.$conf->[0]->{'index'} : 'new=1';
}
return undef;
}