织梦错误 Fatal error: Using $this when not in object context

wdzsjl 3周前 (10-29) 阅读数 18 #织梦DedeCms

错误提示

Fatal error: Using $this when not in object context in D:wwwmeinvtupincludeaglibmynews.lib.php on line 40

原因

  • 在非对象上下文中使用了 $this 关键字。

解决方法

  1. 修改 mynews.lib.php 文件
    • 打开 include/aglib/mynews.lib.php 文件。
    • 找到第40行,将以下代码:
      if($envs['typeid'] > 0) $idsql = " where typeid='".GetTopid($this->TypeID)."' ";
    • 修改为:
      if($envs['typeid'] > 0) $idsql = " where typeid='".GetTopid($envs['typeid'])."' ";

 

wx.jpg ywfw.jpg
热门