From 2f5807a00fdc1b695020020a4e70df3dd07484b4 Mon Sep 17 00:00:00 2001 From: JT Smith Date: Fri, 7 Mar 2003 01:17:18 +0000 Subject: [PATCH] url's now support /'s. --- lib/WebGUI/URL.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WebGUI/URL.pm b/lib/WebGUI/URL.pm index fa535af03..cae01ea3d 100644 --- a/lib/WebGUI/URL.pm +++ b/lib/WebGUI/URL.pm @@ -162,7 +162,7 @@ sub makeCompliant { $value =~ s/^\\//; #removes leading slash $value =~ s/ /_/g; #replaces whitespace with underscores $value =~ s/\.$//; #removes trailing period - $value =~ s/[^A-Za-z0-9\-\.\_\\]//g; #removes all funky characters + $value =~ s/[^A-Za-z0-9\-\.\_\\\/]//g; #removes all funky characters return $value; }