diff options
Diffstat (limited to 'web_wizard/Apache.pm')
-rwxr-xr-x | web_wizard/Apache.pm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/web_wizard/Apache.pm b/web_wizard/Apache.pm index 05b20ea2..b6ccaf57 100755 --- a/web_wizard/Apache.pm +++ b/web_wizard/Apache.pm @@ -57,6 +57,7 @@ my $o = { } else { return (0, N("%s does not exist.", $file)) } + 1 } }; @@ -77,8 +78,8 @@ $o->{pages} = { next => 'ask_mod' }, dhcp_warning => { - name => N('Warning.'), - data => [ { label => N('You are in dhcp, server may not work with your configuration.') } ], + name => N('Warning.') . "\n\n" . N('You are in dhcp, server may not work with your configuration.'), + ignore => 1, next => 'config' }, ask_mod => { @@ -113,11 +114,13 @@ available on your http server via http://www.yourserver.com/~user.'), type => 'b data => [ { label => N('The path you entered does not exist.') } ], + ignore => 1, next => 'ask_dir' }, error => { name => N('Error.'), data => [ { label => N('') } ], + ignore => 1, next => 'config' }, summary => { |