Bugfix: Avoid a warning if "theme_info" isn't an array

This commit is contained in:
Michael Vogel 2016-07-12 12:59:34 +02:00
parent 4e4580f326
commit fdd679636b
1 changed files with 2 additions and 2 deletions

View File

@ -551,7 +551,7 @@ function theme_include($file, $root = '') {
if($root !== '' && $root[strlen($root)-1] !== '/')
$root = $root . '/';
$theme_info = $a->theme_info;
if(array_key_exists('extends',$theme_info))
if(is_array($theme_info) AND array_key_exists('extends',$theme_info))
$parent = $theme_info['extends'];
else
$parent = 'NOPATH';