diff options
author | damien <damien@mandriva.com> | 2001-08-28 15:59:25 +0000 |
---|---|---|
committer | damien <damien@mandriva.com> | 2001-08-28 15:59:25 +0000 |
commit | eb9e2baf8c1f66710eb359779788c4929a3cf4b0 (patch) | |
tree | bc49ba80f2ee994c1e7ba37879f1b7f6f7caf6e6 /perl-install/install2.pm | |
parent | cd18e6bb3295a3f23d6c35d12b3c117b5cb4b6a5 (diff) | |
download | drakx-eb9e2baf8c1f66710eb359779788c4929a3cf4b0.tar drakx-eb9e2baf8c1f66710eb359779788c4929a3cf4b0.tar.gz drakx-eb9e2baf8c1f66710eb359779788c4929a3cf4b0.tar.bz2 drakx-eb9e2baf8c1f66710eb359779788c4929a3cf4b0.tar.xz drakx-eb9e2baf8c1f66710eb359779788c4929a3cf4b0.zip |
corrected icon handling
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r-- | perl-install/install2.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index 05a6b1597..36f1c15e5 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -544,7 +544,7 @@ sub main { MAIN: for ($o->{step} = $o->{steps}{first};; $o->{step} = getNextStep()) { $o->{steps}{$o->{step}}{entered}++; $o->enteringStep($o->{step}); - $o->{steps}{$o->{step}}{icon} and $o->{icon} = $o->{steps}{$o->{step}}{icon}; + if ($o->{steps}{$o->{step}}{icon}) { $o->{icon} = $o->{steps}{$o->{step}}{icon} } else { undef $o->{icon} } eval { &{$install2::{$o->{step}}}($clicked || $o->{steps}{$o->{step}}{noauto}, $o->{steps}{$o->{step}}{entered}, |