From ff89331e88834dffccbecc5be1e31a0e96b18e0b Mon Sep 17 00:00:00 2001 From: Rob van Son Date: Tue, 6 Nov 2012 14:20:19 +0100 Subject: [PATCH] Corrected $* mismatch in CGIservlet.pl --- CGIservlet.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CGIservlet.pl b/CGIservlet.pl index 1e558bc..5c355b8 100755 --- a/CGIservlet.pl +++ b/CGIservlet.pl @@ -638,7 +638,7 @@ while ($_ = shift(@ARGV)) next unless $Alias && $RealURL; # Store the alias # Simple straight translations - unless($Alias =~ m/[\Q^$*&@!\?(){}[];:\E]/) + unless($Alias =~ m/[\$\Q^*&@!\?(){}[];:\E]/) { $AliasTranslation{$Alias} = $RealURL; } -- 2.11.4.GIT