度娘了一下,果真如此,万恶的 dedecms,你就不能正经一点吗?
做如下修改,运行正确:
1、问题管理页面:
代码如下 | 复制代码 |
askcontroladminissue.php 的 $this->lurd = new lurd('#@__ask', $this->temp, $this->temp.'/lurd'); |
的 lurd 改为 Lurd即
代码如下 | 复制代码 |
$this->lurd = new Lurd('#@__ask', $this->temp, $this->temp.'/lurd');; |
2、答案管理页面:同理
代码如下 | 复制代码 |
askcontroladminanswer.php 的 $this->lurd = new lurd('#@__ask', $this->temp, $this->temp.'/lurd'); |
的 lurd 改为 Lurd 即
代码如下 | 复制代码 |
$this->lurd = new lurd('#@__ask', $this->temp, $this->temp.'/lurd');。 |