prevent preloading of upgrade modules

This commit is contained in:
Graham Knop 2010-07-07 02:32:33 -05:00
parent b5542c9902
commit ecec4836f8

View file

@ -203,6 +203,7 @@ Returns the list of modules to exclude from preloading as an array.
sub preloadExclude {
my $class = shift;
my @excludes = _readTextLines($class->preloadExclusions);
push @excludes, 'WebGUI::Upgrade', 'WebGUI::Upgrade::*';
return @excludes;
}