fix bad capitalization

This commit is contained in:
Graham Knop 2010-04-18 18:44:48 -05:00
parent 751023354d
commit 2a3482b1c3

View file

@ -7,7 +7,7 @@ builder {
my $first_app;
for my $config_file (WebGUI::Paths->siteConfigs) {
my $config = WebGUI::Config->new($config_file);
my $psgi = $config->get('psgiFile') || WebGUI::Paths->defaultPsgi;
my $psgi = $config->get('psgiFile') || WebGUI::Paths->defaultPSGI;
my $app = do {
$ENV{WEBGUI_CONFIG} = $config_file;
Plack::Util::load_psgi($psgi);