Copyright @ 2015-2024 织梦园 版权所有 Power by DedeCms
鲁ICP备15039853号-2

模板标签 TAG标签 网站地图 XML地图 今日更新 返回顶部
织梦由于兼容性不够严谨,在PHP7.0的状态下运行,会出现栏目删除后仍然存在的现象,经过反馈给织梦官方(天涯)后,修复后可用。教程如下:
搜索 function DelType($id, $isDelFile) 找到如下代码
function DelType($id, $isDelFile) { $this->idCounter = 0; $this->idArray = " "; $this->GetSunTypes($id); |
修改成:
unction DelType($id, $isDelFile) { $this->idCounter = 0; $this->idArray = array(); $this->GetSunTypes($id); |
修改后如图所示: