修复 某些情况下PHP7.1的兼容性
This commit is contained in:
parent
a0b88619b7
commit
439460810e
|
@ -184,6 +184,9 @@ function updatepluginlanguage($pluginarray) {
|
|||
}
|
||||
foreach(array('script', 'template', 'install', 'system') as $type) {
|
||||
loadcache('pluginlanguage_'.$type, 1);
|
||||
if(empty($_G['cache']['pluginlanguage_'.$type])) {
|
||||
$_G['cache']['pluginlanguage_'.$type] = array();
|
||||
}
|
||||
if($type != 'system') {
|
||||
if(!empty($pluginarray['language'][$type.'lang'])) {
|
||||
$_G['cache']['pluginlanguage_'.$type][$pluginarray['plugin']['identifier']] = $pluginarray['language'][$type.'lang'];
|
||||
|
|
Loading…
Reference in New Issue