1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-20 05:11:42 +02:00

Merge pull request #3210 from Deltik/fix-3198

Fixes #3198 - Legacy prefs, missing forums
This commit is contained in:
Cameron
2018-06-23 17:10:13 -07:00
committed by GitHub
3 changed files with 5 additions and 10 deletions

View File

@@ -3934,7 +3934,7 @@ class e_admin_controller_ui extends e_admin_controller
$keys = array();
foreach($matches[1] AS $k=>$v)
{
if(varset($matches[3][$k]))
if(varset($matches[3][$k]) && !array_key_exists($v, $this->joinAlias))
{
$this->joinAlias[$v] = $matches[3][$k]; // array. eg $this->joinAlias['core_media'] = 'm';
}