提交者 | wishcraft | 出版者 | Simon Roberts |
发布 | 2009/03/27 | 版本 | 3.40 |
下载 | 4233 | 文件大小 | 444 Kb |
主页 | Chronolabs 国际 | 价格: | 免费 |
平台 | 2.3.x | 许可 | GNU通用公共许可证(GPL)(v. 2.0) |
限制 | 无 |
MyAlbum-p
(2012/03/13)
|
Flowplayer
(2012/03/13)
|
X-REST API
(2012/03/13)
|
UI选项卡
(2012/03/13)
|
性感
(2012/03/13)
|
基准测试
(2012/03/13)
|
Maquee 1.03
(2012/03/13)
|
XQuiz
(2012/03/13)
|
MatrixStream 1.06(商业版)
(2011/11/22)
|
Pageflip 1.03 RC - 为XOOPS的多语言书籍
(2011/09/22)
|
IRC 1.02
(2011/08/10)
|
TwitterBomb 1.12
(2011/08/10)
|
Prochatrooms 7.0
(2011/05/08)
|
会员 1.02
(2011/02/06)
|
网络摄像头 1.09
(2011/02/04)
|
Xpayment 1.18
(2011/01/21)
|
XinCodes 1.02
(2010/12/15)
|
个人资料(详述) 1.62
(2010/12/15)
|
日期 1.45
(2010/11/08)
|
X-Center
(2010/09/29)
|
x-Torrent 1.47 - 3个快速修复 - RSS源
这是RSS源的一个快速修复。
/xtorrent/rss/feed.php
//行 38:-
$download['url'] = XOOPS_URL.'/modules/'.$xoopsModule->dirname().'/visit.php?agree=1&lid='.$myrow['lid'];
你也可以添加guid到它
//行 115之后:-
<guid>$item['dossier_url']; ?>
这将为种子页面的RSS源放置一个“阅读更多”链接。现在,为了最终修复,需要一个类别……这需要做更多一些。
//第30行:-
$result = $xoopsDB->query("SELECT a.lid, a.cid, a.title, a.date, a.description, a.hits, b.title as category FROM " .
$xoopsDB->prefix('xtorrent_downloads'). " a INNER JOIN " . $xoopsDB->prefix('xtorrent_cat') .
" b ON a.cid = b.cid $pif ORDER BY published DESC ", $numitems, 0);
// 第38行 & 40行 修改:-
$download['url'] = XOOPS_URL.'/modules/'.$xoopsModule->dirname().'/visit.php?agree=1&lid='.$myrow['lid'].'&cid='.$myrow['cid'];
$download['dossier_url'] = XOOPS_URL.'/modules/'.$xoopsModule->dirname().'/singlefile.php?lid='.$myrow['lid'].'&cid='.$myrow['cid'];
// 在第42行添加:-
$download['category'] = $myrow['category'];
//在117行后添加
<category>$item['category']; ?>
这就是我对x-torrent源快速修复的错误处理