本帖最后由 凡军 于 2010-3-7 21:53 编辑
安装说明- 2 把文件夹html下的文件复制到template\default下
复制代码 4.打开template\default\Header.htm
找到- <li><img src="image/app/share.gif"><a href="space.php?do=share">分享</a></li>
复制代码 在后面加上- <!-- add -->
- <li><img src="image/app/share.gif"><a href="space.php?do=gshare">游戏分享</a></li>
- <!-- /add-->
复制代码 5.在home根目录找Space.php,打开找到- //允许动作
- $dos = array('feed', 'doing', 'mood', 'blog', 'album', 'thread', 'mtag', 'friend', 'wall', 'tag', 'notice', 'share', 'topic', 'home', 'pm', 'event', 'poll', 'top', 'info', 'videophoto');
复制代码 在后面加上效果为:- //允许动作
- $dos = array('feed', 'doing', 'mood', 'blog', 'album', 'thread', 'mtag', 'friend', 'wall', 'tag', 'notice', 'share', 'topic', 'home', 'pm', 'event', 'poll', 'top', 'info', 'videophoto','gshare');
复制代码 |