Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[已解决] 导致嵌入点index_forum_extra无法正常使用

[复制链接]
530761333 发表于 2012-7-2 23:37:37 | 显示全部楼层 |阅读模式
本帖最后由 530761333 于 2012-7-2 23:43 编辑

问题描述:
开发了一个插件,用到嵌入点“index_forum_extra”,在没有开启纵横搜索的情况下,我的插件可以正常使用,开启纵横搜索就会导致嵌入点index_forum_extra无法正常使用。

尝试排错:
我看了纵横搜索的代码,发现纵横搜索插件也用到这个嵌入点“index_forum_extra” 。在/source/plugin/cloudsearch/search.class.php文件中有这么两个函数,在函数的开头就使用了return,代码如下:
  1. public function index_forum_extra_output() {

  2.                 return;
  3.                 if (!$this->allow || !$this->allow_forum_recommend) {
  4.                         return;
  5.                 }

  6.                 global $forumlist;

  7.                 return $this->_get_forum_hotspot($forumlist);
  8.         }

  9.         public function forumdisplay_subforum_extra_output() {

  10.                 return;
  11.                 if (!$this->allow || !$this->allow_forum_recommend) {
  12.                         return;
  13.                 }

  14.                 global $sublist;

  15.                 return $this->_get_forum_hotspot($sublist);
  16.         }
复制代码
我尝试把以下代码注释:
  1. public function index_forum_extra_output() {

  2. return;
  3. if (!$this->allow || !$this->allow_forum_recommend) {
  4. return;
  5. }

  6. global $forumlist;

  7. return $this->_get_forum_hotspot($forumlist);
  8. }
复制代码
注释后发现我的插件就能正常工作了。这是BUG吗?

问题:
1、请问这两个函数意义何在?
2、为什么在纵横搜索插件中直接return后,其他插件就无法正常使用嵌入点“index_forum_extra ”?
otherbank 发表于 2012-7-3 16:22:43 | 显示全部楼层
您好,这两个方法已经废弃,楼主可以删除这两个方法
或者将这两个方法中的
return;
复制代码
改为
return array();
复制代码
回复

使用道具 举报

 楼主| 530761333 发表于 2012-7-3 16:50:38 | 显示全部楼层
otherbank 发表于 2012-7-3 16:22
您好,这两个方法已经废弃,楼主可以删除这两个方法
或者将这两个方法中的
return;

好的谢谢
回复

使用道具 举报

zbj123.com 发表于 2012-7-4 18:25:31 | 显示全部楼层
干嘛用的
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-26 10:18 , Processed in 0.026284 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表