1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 20:00:37 +02:00

Issue #6 Fixed global LAN loading issue on list_new, pm and others not using an "English" folder. Corrected global LAN definition on list_new.

This commit is contained in:
Cameron
2017-12-16 12:25:18 -08:00
parent 6d401be7e5
commit 973e0dc009
7 changed files with 31 additions and 20 deletions

View File

@@ -690,7 +690,11 @@ if(isset($pref['lan_global_list']))
{
foreach($pref['lan_global_list'] as $path)
{
e107::plugLan($path,'global',true);
if(e107::plugLan($path, 'global', true) === false)
{
e107::plugLan($path, 'global', false);
}
}
}