diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2003-10-15 13:32:55 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2003-10-15 13:32:55 +0000 |
commit | 8c56e2d1441b1195ebc86155d15eb6ee1c6ccc1b (patch) | |
tree | 1972863987318837df5bf862b8c4bebd8c904394 /perl-install/any.pm | |
parent | 727ba89565bc09b2467b000fce2a9052d5b7dd9f (diff) | |
download | drakx-8c56e2d1441b1195ebc86155d15eb6ee1c6ccc1b.tar drakx-8c56e2d1441b1195ebc86155d15eb6ee1c6ccc1b.tar.gz drakx-8c56e2d1441b1195ebc86155d15eb6ee1c6ccc1b.tar.bz2 drakx-8c56e2d1441b1195ebc86155d15eb6ee1c6ccc1b.tar.xz drakx-8c56e2d1441b1195ebc86155d15eb6ee1c6ccc1b.zip |
fix code that selects images for the choice of languages to not base on FB as well
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r-- | perl-install/any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index 4ee1c3ac7..f1f131967 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -667,7 +667,7 @@ sub selectLanguage { if ($::isInstall) { my $langs = $o_langs_ || {}; - my $using_images = $in->isa('interactive::gtk') && listlength(cat_('/proc/fb')); + my $using_images = $in->isa('interactive::gtk') && !$in->{vga16}; #- to create the default value, use the first location for that value :/ $lang = first(lang::l2location($lang))."|$lang"; |