
| 歡迎訪問全國企業網站設計NO.1網站開發商平臺 | 付款方式 |
POST TIME:2020-10-09
織夢由于兼容性不夠嚴謹,在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);
|
修改后如圖所示:
