summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakperm
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-08-08 23:45:20 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-08-08 23:45:20 +0000
commit1aeb5e9ce5b741db7c7e5dc1c8accec799576fca (patch)
treefdcab9ff997efebf1acf15e6bd76a5be0550891e /perl-install/standalone/drakperm
parenta3f578efbce1bc645499611f0f1cc13c996f3275 (diff)
downloaddrakx-1aeb5e9ce5b741db7c7e5dc1c8accec799576fca.tar
drakx-1aeb5e9ce5b741db7c7e5dc1c8accec799576fca.tar.gz
drakx-1aeb5e9ce5b741db7c7e5dc1c8accec799576fca.tar.bz2
drakx-1aeb5e9ce5b741db7c7e5dc1c8accec799576fca.tar.xz
drakx-1aeb5e9ce5b741db7c7e5dc1c8accec799576fca.zip
(row_setting_dialog) do not set hash as string on labels else perl will
stringify this very hash thus making draksec crashes with strict pragma
Diffstat (limited to 'perl-install/standalone/drakperm')
-rwxr-xr-xperl-install/standalone/drakperm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakperm b/perl-install/standalone/drakperm
index 2eae934b8..a56307ef6 100755
--- a/perl-install/standalone/drakperm
+++ b/perl-install/standalone/drakperm
@@ -328,7 +328,7 @@ sub row_setting_dialog {
gtkpack(gtkset_border_width(Gtk2::HBox->new, 3),
gtkadd(Gtk2::VBox->new,
Gtk2::Label->new(""),
- map { gtkset_tip($tips, Gtk2::Label->new($checks{$_}{label}), $checks{$_}{tip}) } @rights,
+ map { Gtk2::Label->new($checks{$_}{label}) } @rights,
),
(map {
my $owner = $_;