url's now support /'s.

This commit is contained in:
JT Smith 2003-03-07 01:17:18 +00:00
parent a08431e436
commit 2f5807a00f

View file

@ -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;
}