diff options
Diffstat (limited to 'perl-install/interactive/http.pm')
-rw-r--r-- | perl-install/interactive/http.pm | 4 |
1 files changed, 2 insertions, 2 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"; |