From 0e1edf614ff8f88c7bfdd214d8024bda3f649372 Mon Sep 17 00:00:00 2001 From: "ian%hixie.ch" Date: Thu, 8 Nov 2001 17:27:07 +0000 Subject: [PATCH] Also send default values to output. git-svn-id: svn://10.0.0.236/trunk@107679 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/PLIF/PLIF/Input/CommandLine.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/webtools/PLIF/PLIF/Input/CommandLine.pm b/mozilla/webtools/PLIF/PLIF/Input/CommandLine.pm index 0e5e1227002..c44f73c8e47 100644 --- a/mozilla/webtools/PLIF/PLIF/Input/CommandLine.pm +++ b/mozilla/webtools/PLIF/PLIF/Input/CommandLine.pm @@ -93,7 +93,7 @@ sub createArgument { $self->SUPER::createArgument(@_); } else { $self->warn(5, "going to request '$argument' from user!"); - $self->app->output->request($argument); + $self->app->output->request(@_); # get input from user my $term = Term::ReadLine->new($self->app->name); my $value = $term->readline(''); # (the parameter passed is the prompt, if any)