From 033b4d7c0bb028c990dc4c34f81c916ff44439bc Mon Sep 17 00:00:00 2001 From: Graham Knop Date: Mon, 19 Apr 2010 10:58:14 -0500 Subject: [PATCH] fix WebGUI::Paths recursion --- lib/WebGUI/Paths.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WebGUI/Paths.pm b/lib/WebGUI/Paths.pm index eeac57101..69e03cf49 100644 --- a/lib/WebGUI/Paths.pm +++ b/lib/WebGUI/Paths.pm @@ -201,7 +201,7 @@ Returns the list of modules to exclude from preloading as an array. sub preloadExclude { my $class = shift; - my @excludes = _readTextLines($class->preloadExclude); + my @excludes = _readTextLines($class->preloadExclusions); return @excludes; }