diff options
author | Florent Villard <warly@mandriva.com> | 2003-09-17 17:41:09 +0000 |
---|---|---|
committer | Florent Villard <warly@mandriva.com> | 2003-09-17 17:41:09 +0000 |
commit | 986a271663c7f37797bec011b2ee9379e82ac4fe (patch) | |
tree | add300da8273c0c5dc56f0e13ac72066a80399d1 /proxy_wizard | |
parent | b5974747d1a6f7669052ddd42d4a45e4eb7072c1 (diff) | |
download | drakwizard-986a271663c7f37797bec011b2ee9379e82ac4fe.tar drakwizard-986a271663c7f37797bec011b2ee9379e82ac4fe.tar.gz drakwizard-986a271663c7f37797bec011b2ee9379e82ac4fe.tar.bz2 drakwizard-986a271663c7f37797bec011b2ee9379e82ac4fe.tar.xz drakwizard-986a271663c7f37797bec011b2ee9379e82ac4fe.zip |
better check of ip addresses in dhcp
check that server has been run in client dns
check that the program is run as root in drakwizard
remove bad quotes in po
Diffstat (limited to 'proxy_wizard')
-rwxr-xr-x | proxy_wizard/Squid.pm | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/proxy_wizard/Squid.pm b/proxy_wizard/Squid.pm index cba09f44..24fc4ad0 100755 --- a/proxy_wizard/Squid.pm +++ b/proxy_wizard/Squid.pm @@ -83,11 +83,7 @@ $o->{pages} = { next => 'memory' }, error_low => { - name => N('Warning.'), - data => [ - { label => N('You must choose a port greater than 1024 and lower than 65535') }, - { label => N('Press back to change the value.') } - ], + name => N('Warning.') . "\n\n" . N('You must choose a port greater than 1024 and lower than 65535') . "\n\n" . N('Press back to change the value.'), next => 'memory' }, memory => { @@ -171,8 +167,7 @@ $o->{pages} = { next => 'end' }, end => { - name => N('Congratulation'), - data => [ { label => N('The wizard successfully configured your proxy server.') } ], + name => N('Congratulation') . N('The wizard successfully configured your proxy server.'), end => 1, next => 0 }, |