Submitter: | wishcraft | Publisher: | Simon Roberts |
Released: | 2009/03/27 | Version: | 3.40 |
Downloads: | 4256 | File Size: | 444 Kb |
Home Page: | Chronolabs International | Price:: | Free |
Platform: | 2.3.x | License: | GNU General Public License (GPL) (v. 2.0) |
Limitations: | None |
MyAlbum-p
(2012/03/13)
|
Flowplayer
(2012/03/13)
|
X-REST API
(2012/03/13)
|
UI Tabs
(2012/03/13)
|
Sexy
(2012/03/13)
|
Benchmark
(2012/03/13)
|
Maquee 1.03
(2012/03/13)
|
XQuiz
(2012/03/13)
|
MatrixStream 1.06 (Commerical)
(2011/11/22)
|
Pageflip 1.03 RC - Multilingual Books for XOOPS
(2011/09/22)
|
IRC 1.02
(2011/08/10)
|
TwitterBomb 1.12
(2011/08/10)
|
Prochatrooms 7.0
(2011/05/08)
|
Membership 1.02
(2011/02/06)
|
Webcams 1.09
(2011/02/04)
|
Xpayment 1.18
(2011/01/21)
|
XinCodes 1.02
(2010/12/15)
|
Profile (Verbose) 1.62
(2010/12/15)
|
Dates 1.45
(2010/11/08)
|
X-Center
(2010/09/29)
|
x-Torrent 1.47 - 3 Quick Getafix's - RSS Feed
This is a quick fix for the RSS Feed.
/xtorrent/rss/feed.php
//Line 38:-
$download['url'] = XOOPS_URL.'/modules/'.$xoopsModule->dirname().'/visit.php?agree=1&lid='.$myrow['lid'];
You may also like to add guid to it:
//After Line 115:-
<guid> echo $item['dossier_url']; ?>
This will place a 'read more' to the torrent page rss feed. Now for the final fix a category.. This is a little bit more involved.
//Line 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);
// Line 38 & 40 Change :-
$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'];
// Add at line 42 :-
$download['category'] = $myrow['category'];
//Add after line 117
<category> echo $item['category']; ?>
And that is that for my quick bug fix to the x-torrent feed