From 16f38df1f643738d6d40e31f6ee854bf74ffb9e5 Mon Sep 17 00:00:00 2001 From: JT Smith Date: Tue, 3 May 2005 14:09:04 +0000 Subject: [PATCH] fixed typo --- lib/WebGUI/Config.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WebGUI/Config.pm b/lib/WebGUI/Config.pm index e28255ccc..b76361cac 100644 --- a/lib/WebGUI/Config.pm +++ b/lib/WebGUI/Config.pm @@ -116,7 +116,7 @@ sub readAllConfigs { closedir(DIR); my %configs; foreach my $file (@files) { - if ($file =~ /\.conf$/ && !($file =~ /^logs.conf$/)) { + if ($file =~ /\.conf$/ && !($file =~ /^log.conf$/)) { $configs{$file} = readConfig($webguiPath,$file); } }