diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-01-19 10:50:14 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-01-19 10:50:14 +0000 |
commit | 343f05fea083799d5b74886b0a06d7c91d586673 (patch) | |
tree | 61121e982d8e5b5419b077a42265efead485e0dc /perl-install/install_steps_interactive.pm | |
parent | 91fbb99d255c294114b667c4a365b37c07c88e73 (diff) | |
download | drakx-343f05fea083799d5b74886b0a06d7c91d586673.tar drakx-343f05fea083799d5b74886b0a06d7c91d586673.tar.gz drakx-343f05fea083799d5b74886b0a06d7c91d586673.tar.bz2 drakx-343f05fea083799d5b74886b0a06d7c91d586673.tar.xz drakx-343f05fea083799d5b74886b0a06d7c91d586673.zip |
$::testing means testing, not "testing what titi wants to test"
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index db40a2a0e..6468a8b2f 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -1151,7 +1151,6 @@ sub setRootPassword { focus_first => 1, callbacks => { complete => sub { - return 0 if $::testing; $sup->{password} eq $sup->{password2} or $o->ask_warn('', [ N("The passwords do not match"), N("Please try again") ]), return 1,0; length $sup->{password} < 2 * $o->{security} and $o->ask_warn('', N("This password is too short (it must be at least %d characters long)", 2 * $o->{security})), return 1,0; |