Cache unloaded configs for us poor Win32 saps.

This commit is contained in:
Matthew Wilson 2005-11-28 14:48:44 +00:00
parent 644713b81a
commit e813598a76

View file

@ -66,7 +66,8 @@ sub getConfig {
if (exists $config{$filename}) {
return $config{$filename};
} else {
return readConfig($webguiPath,$filename);
$config{$filename} = readConfig($webguiPath,$filename);
return $config{$filename};
}
}