Fallout from previous checkin; need to escape "-" in regexp for some versions of Perl, because it interprets it as a range.

This commit is contained in:
gerv%gerv.net 2002-09-18 18:59:55 +00:00
Родитель d58abba5ce
Коммит 34a4a40da0
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -40,7 +40,7 @@ ConnectToDatabase();
quietly_check_login();
if (defined $::FORM{'id'}) {
$::FORM{'id'} =~ s/[^\w-\.]//g;
$::FORM{'id'} =~ s/[^\w\-\.]//g;
$::FORM{'id'} =~ /(.*)(\.(.*))?/;
my $format = GetFormat($1, undef, $3);