diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-08-08 23:45:20 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-08-08 23:45:20 +0000 |
commit | 1aeb5e9ce5b741db7c7e5dc1c8accec799576fca (patch) | |
tree | fdcab9ff997efebf1acf15e6bd76a5be0550891e /perl-install/standalone | |
parent | a3f578efbce1bc645499611f0f1cc13c996f3275 (diff) | |
download | drakx-backup-do-not-use-1aeb5e9ce5b741db7c7e5dc1c8accec799576fca.tar drakx-backup-do-not-use-1aeb5e9ce5b741db7c7e5dc1c8accec799576fca.tar.gz drakx-backup-do-not-use-1aeb5e9ce5b741db7c7e5dc1c8accec799576fca.tar.bz2 drakx-backup-do-not-use-1aeb5e9ce5b741db7c7e5dc1c8accec799576fca.tar.xz drakx-backup-do-not-use-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')
-rwxr-xr-x | perl-install/standalone/drakperm | 2 |
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 = $_; |