diff options
Diffstat (limited to 'perl-install/install_any.pm')
-rw-r--r-- | perl-install/install_any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index 5d4feaf65..6f766338b 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -482,7 +482,7 @@ sub selectSupplMedia { $url =~ m!^ftp://(?:(.*?)(?::(.*?))?@)?([^/]+)/(.*)! and $global_ftp_prefix = [ $3, $4, $1, $2 ]; #- for getFile } else { - my $url = $o->ask_from_entry('', N("URL of the mirror?")) or return ''; + $url = $o->ask_from_entry('', N("URL of the mirror?")) or return ''; } useMedium($medium_name); require "$suppl_method.pm"; #- require http or ftp |