DEDECMS织梦修正PHP7下无法删除栏目的BUG

织梦由于兼容性不够严谨,在PHP7.0的状态下运行,会出现栏目删除后仍然存在的现象,经过反馈给织梦官方(天涯)后,修复后可用。教程如下:

需要修改系统文件,打开:/include/typeunit.class.admin.php

搜索 function DelType($id, $isDelFile) 找到如下代码

function DelType($id, $isDelFile)

    {

        $this->idCounter = 0;

        $this->idArray = " ";

        $this->GetSunTypes($id);

修改成:

function DelType($id, $isDelFile)

    {

        $this->idCounter = 0;

        $this->idArray = array();

        $this->GetSunTypes($id);

修改后如图所示:

DEDECMS织梦修正PHP7下无法删除栏目的BUG