From 8ce611b368249ae5b3644e77c14fd63aa826ba14 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Thu, 31 Jan 2008 00:01:46 +0000 Subject: [PATCH] Remove warns for debugging in the handler. --- lib/WebGUI.pm | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/WebGUI.pm b/lib/WebGUI.pm index 0acf35727..3019d7422 100644 --- a/lib/WebGUI.pm +++ b/lib/WebGUI.pm @@ -65,9 +65,7 @@ sub handler { my $error = ""; my $matchUri = $request->uri; my $gateway = $config->get("gateway"); -warn $matchUri; $matchUri =~ s{^$gateway(.*)}{/$1}; -warn $matchUri; foreach my $handler (@{$config->get("urlHandlers")}) { my ($regex) = keys %{$handler}; if ($matchUri =~ m{$regex}i) {