diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-06-01 13:17:44 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-06-01 13:17:44 +0000 |
commit | ec4c70b1ac6cd7b0cb39f7619df2a61ecc90b617 (patch) | |
tree | 9ced8c3b7816ffe179c330483bda4c877bbafb10 | |
parent | 8de97096ded5d83e23863097f4e230b02b45fbdb (diff) | |
download | drakx-ec4c70b1ac6cd7b0cb39f7619df2a61ecc90b617.tar drakx-ec4c70b1ac6cd7b0cb39f7619df2a61ecc90b617.tar.gz drakx-ec4c70b1ac6cd7b0cb39f7619df2a61ecc90b617.tar.bz2 drakx-ec4c70b1ac6cd7b0cb39f7619df2a61ecc90b617.tar.xz drakx-ec4c70b1ac6cd7b0cb39f7619df2a61ecc90b617.zip |
rollback weird and ugly workaround when pressing cancel on the ask_warn. The real fix is in ugtk2.pm
-rwxr-xr-x | perl-install/standalone/drakboot | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/standalone/drakboot b/perl-install/standalone/drakboot index e1891fdb9..3298a3d39 100755 --- a/perl-install/standalone/drakboot +++ b/perl-install/standalone/drakboot @@ -252,9 +252,8 @@ sub lilo_choice() { if ($err && $err !~ /wizcancel/) { # BUG: note that the following message won't speak about the right bootloader if user is currently switching between # various bootloaders and if the error occured before boot sector get overwritten by bootloader installer - my $w = $in->ask_warn(N("Error"), + $in->ask_warn(N("Error"), [ N("Installation of %s failed. The following error occured:", bootloader::detect_bootloader()), $err ]); - undef $w; goto ask; } } |