fix: Pluggable URL handlers didn't work with gateways other than /.

This commit is contained in:
JT Smith 2008-01-29 22:21:51 +00:00
parent bff94329dc
commit 215914590a
3 changed files with 8 additions and 2 deletions

View file

@ -458,7 +458,7 @@
# { "^/perl-status$" : "WebGUI::URL::PassThru" },
{ "^/uploads/dictionaries" : "WebGUI::URL::Unauthorized" },
{ "^/uploads" : "WebGUI::URL::Uploads" },
{ "^/\*give-credit-where-credit-is-due\*$" : "WebGUI::URL::Credits" },
{ "^/\\*give-credit-where-credit-is-due\\*$" : "WebGUI::URL::Credits" },
{ "^/abcdefghijklmnopqrstuvwxyz$" : "WebGUI::URL::Snoop" },
{ ".*" : "WebGUI::URL::Content" }
],