1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-01 12:20:44 +02:00

Fix for missing theme data and incorrect LAN labels.

This commit is contained in:
Cameron
2016-12-21 08:13:23 -08:00
parent fdfdbe44f4
commit db1aa937aa
2 changed files with 10 additions and 6 deletions

View File

@@ -76,7 +76,8 @@ if(!empty($_GET['action']))
case 'info':
$string = base64_decode($_GET['src']);
parse_str($string,$p);
echo $themec->renderThemeInfo($p);
$themeInfo = e107::getSession()->get('thememanager/online/'.intval($p['id']));
echo $themec->renderThemeInfo($themeInfo);
break;