DX1.5版块合并BUG修复方法
后台合并版面以后出现空白或者出现错误代码用下面的修复修复方法:
source/admin/admincp_forums.php中 $targethreadtypes['types'] = $targethreadtypes['types'] + $sourcethreadtypes['types'];
$targethreadtypes['icons'] = $targethreadtypes['icons'] + $sourcethreadtypes['icons'];改为 $targethreadtypes['types'] = array_merge($targethreadtypes['types'], $sourcethreadtypes['types']);
$targethreadtypes['icons'] = array_merge($targethreadtypes['icons'], $sourcethreadtypes['icons']);
页:
[1]