蓝雨 发表于 2010-12-26 21:19:23

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]
查看完整版本: DX1.5版块合并BUG修复方法