diff options
author | Thierry Vignaud <tv@mandriva.org> | 2009-03-23 10:11:44 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2009-03-23 10:11:44 +0000 |
commit | 1ec9e6ae011c4f7b9cd071eff492b0fafb09f110 (patch) | |
tree | 164c8692434f69a2b7925879ca4fd6e1203f4032 | |
parent | bb291f67cde09397bce6050c957331cd6a8bb2b5 (diff) | |
download | drakwizard-1ec9e6ae011c4f7b9cd071eff492b0fafb09f110.tar drakwizard-1ec9e6ae011c4f7b9cd071eff492b0fafb09f110.tar.gz drakwizard-1ec9e6ae011c4f7b9cd071eff492b0fafb09f110.tar.bz2 drakwizard-1ec9e6ae011c4f7b9cd071eff492b0fafb09f110.tar.xz drakwizard-1ec9e6ae011c4f7b9cd071eff492b0fafb09f110.zip |
fix 5 other #37452-like crashes in DNS wizard
-rw-r--r-- | dns_wizard/Bind.pm | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/dns_wizard/Bind.pm b/dns_wizard/Bind.pm index 1bbeba97..29e2d766 100644 --- a/dns_wizard/Bind.pm +++ b/dns_wizard/Bind.pm @@ -233,12 +233,10 @@ $o->{pages} = { }, error_nosrv => { name => N("It seems that no DNS server has been set through wizard. Please run DNS wizard: Master DNS server."), - next => 0, end => 1, }, error_notmaster => { name => N("It seems that you are not a master DNS server, so I can't add/remove host."), - next => 0, end => 1, }, summaryslave => { @@ -289,21 +287,18 @@ $o->{pages} = { data => [ { label => N("The wizard successfully removed the host from your DNS.") } ], no_back => 1, end => 1, - next => 0, }, end => { name => N("Congratulations"), data => [ { label => N("The wizard successfully configured the DNS service of your server.") } ], no_back => 1, end => 1, - next => 0, }, error_end => { name => N("Failed"), data => [ { label => N("Please Relaunch drakwizard, and try to change some parameters.") } ], no_back => 1, end => 1, - next => 0, }, }; |