在dedecms中安裝了“站內(nèi)新聞”模塊后,更新到欄目的時(shí)候,出現(xiàn)錯(cuò)誤提示:Using $this when not in object context in C:\AppServ\www\site1\include\taglib\mynews.lib.php on line 16
。解決辦法如下: 修改include\taglib\mynews.lib.php 第 16 行 if($envs['typeid'] > 0) $idsql = ” where typeid=’”.GetTopid($this->TypeID).”‘ “; if($envs['typeid'] > 0) $idsql = ” where typeid=’”.GetTopid($refObj->TypeID).”‘ “; 就可以解決此BUG。 |
|