diff options
author | Olivier Blin <oblin@mandriva.org> | 2004-08-25 05:13:21 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2004-08-25 05:13:21 +0000 |
commit | 4f3dac86d5055ae5e3ce8bee2875b7de800f8880 (patch) | |
tree | db46b55f27b4da39396cd1dce6f27168d96ac2eb /perl-install | |
parent | 9f24cd47b24bc69b2607cfcd2a5e39c22f3d8176 (diff) | |
download | drakx-backup-do-not-use-4f3dac86d5055ae5e3ce8bee2875b7de800f8880.tar drakx-backup-do-not-use-4f3dac86d5055ae5e3ce8bee2875b7de800f8880.tar.gz drakx-backup-do-not-use-4f3dac86d5055ae5e3ce8bee2875b7de800f8880.tar.bz2 drakx-backup-do-not-use-4f3dac86d5055ae5e3ce8bee2875b7de800f8880.tar.xz drakx-backup-do-not-use-4f3dac86d5055ae5e3ce8bee2875b7de800f8880.zip |
(selectCountry) fix Pixel broke country selection (bug 10938)
Diffstat (limited to 'perl-install')
-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 74d6ab60b..445f5c02c 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -745,7 +745,7 @@ sub selectCountry { advanced_messages => N("Here is the full list of available countries"), advanced_label => N("Other Countries"), advanced_state => $ext_country && scalar(@best), - callbacks => { changed => sub { $_[0] != 2 and $other = $_[0] == 0 } }, + callbacks => { changed => sub { $_[0] != 2 and $other = $_[0] == 1 } }, }, [ if_(@best, { val => \$country, type => 'list', format => \&lang::c2name, list => \@best, sort => 1 }), |