summaryrefslogtreecommitdiffstats
path: root/lib/network/drakfirewall.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-09-01 16:11:02 +0000
committerThierry Vignaud <tv@mandriva.org>2008-09-01 16:11:02 +0000
commit28e68785e57f627c7978767236f8ffb82b061fc7 (patch)
treedeef275784b8fae0402f9163e3daf7da86e37cf2 /lib/network/drakfirewall.pm
parent2ba7d9151e552e3855a45c461f4c3ee58f667f76 (diff)
downloaddrakx-net-28e68785e57f627c7978767236f8ffb82b061fc7.tar
drakx-net-28e68785e57f627c7978767236f8ffb82b061fc7.tar.gz
drakx-net-28e68785e57f627c7978767236f8ffb82b061fc7.tar.bz2
drakx-net-28e68785e57f627c7978767236f8ffb82b061fc7.tar.xz
drakx-net-28e68785e57f627c7978767236f8ffb82b061fc7.zip
(choose_allowed_services) fix title style in drakwizard
Diffstat (limited to 'lib/network/drakfirewall.pm')
-rw-r--r--lib/network/drakfirewall.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/network/drakfirewall.pm b/lib/network/drakfirewall.pm
index c471e88..6fa1a7b 100644
--- a/lib/network/drakfirewall.pm
+++ b/lib/network/drakfirewall.pm
@@ -189,7 +189,6 @@ sub choose_allowed_services {
my @l = grep { $_->{on} || !$_->{hide} } @all_servers;
$in->ask_from_({
- messages => N("Which services would you like to allow the Internet to connect to?"),
title => N("Firewall"),
icon => $network::shorewall::firewall_icon,
banner_title => N("Firewall"),
@@ -209,6 +208,7 @@ You can also give a range of ports (eg: 24300:24350/udp)", $invalid_port));
},
} },
[
+ { label => N("Which services would you like to allow the Internet to connect to?"), title => 1 },
{ text => N("Everything (no firewall)"), val => \$disabled, type => 'bool' },
(map { { text => translate($_->{name}), val => \$_->{on}, type => 'bool', disabled => sub { $disabled } } } @l),
{ label => N("Other ports"), val => \$unlisted, advanced => 1, disabled => sub { $disabled } },