diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-05-26 09:13:34 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-05-26 09:13:34 +0000 |
commit | e05ddb281beb452808a0f3669c93c907acf1fa77 (patch) | |
tree | e0be239d7fea26ff84254b55b77c1eed48af421a /perl-install/interactive | |
parent | 5c629f83b4a37df7ef2981efbbc8093c75641382 (diff) | |
download | drakx-e05ddb281beb452808a0f3669c93c907acf1fa77.tar drakx-e05ddb281beb452808a0f3669c93c907acf1fa77.tar.gz drakx-e05ddb281beb452808a0f3669c93c907acf1fa77.tar.bz2 drakx-e05ddb281beb452808a0f3669c93c907acf1fa77.tar.xz drakx-e05ddb281beb452808a0f3669c93c907acf1fa77.zip |
- methods with no argument are not functions with no argument!
- perl_checker fixes
Diffstat (limited to 'perl-install/interactive')
-rw-r--r-- | perl-install/interactive/http.pm | 4 | ||||
-rw-r--r-- | perl-install/interactive/newt.pm | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/perl-install/interactive/http.pm b/perl-install/interactive/http.pm index c821467a8..3fef66fcb 100644 --- a/perl-install/interactive/http.pm +++ b/perl-install/interactive/http.pm @@ -41,7 +41,7 @@ sub new { bless {}, $_[0]; } -sub end() { +sub end { -e $pipe_r or return; # don't run this twice my $q = CGI->new; cont_stdout("Exit"); @@ -93,7 +93,7 @@ sub ask_fromW { } else { print $e->{hidden} ? $q->password_field('-name' => "w$::i", '-default' => ${$e->{val}}) : - $q->textfield( '-name' => "w$::i", '-default' => ${$e->{val}}); + $q->textfield('-name' => "w$::i", '-default' => ${$e->{val}}); } print "</td></tr>\n"; diff --git a/perl-install/interactive/newt.pm b/perl-install/interactive/newt.pm index 087b19112..52ba9ce57 100644 --- a/perl-install/interactive/newt.pm +++ b/perl-install/interactive/newt.pm @@ -23,11 +23,11 @@ sub new { bless {}, $_[0]; } -sub enter_console() { Newt::Suspend() } -sub leave_console() { Newt::Resume() } -sub suspend() { Newt::Suspend() } -sub resume() { Newt::Resume() } -sub end() { Newt::Finished() } +sub enter_console { Newt::Suspend() } +sub leave_console { Newt::Resume() } +sub suspend { Newt::Suspend() } +sub resume { Newt::Resume() } +sub end { Newt::Finished() } sub exit { end(); exit($_[1]) } END { end() } |