Skip to content
Snippets Groups Projects
Commit 92e52d8d authored by joe.lapp's avatar joe.lapp
Browse files

$conf['rss_linkto'] specifying default RSS feed linkto

darcs-hash:20050915153238-36b45-6a10efcc6969713d3c2554ab610535ebae95aca1.gz
parent 44ec97b1
No related branches found
No related tags found
No related merge requests found
......@@ -75,6 +75,11 @@ $conf['im_convert'] = ''; //path to ImageMagicks convert (will be
$conf['spellchecker']= 0; //enable Spellchecker (needs PHP >= 4.3.0 and aspell installed)
$conf['subscribers'] = 0; //enable change notice subscription support
$conf['pluginmanager'] = 0; //enable automated plugin management (requires plugin)
$conf['rss_linkto'] = 'diff'; //what page RSS entries link to:
// 'diff' - page showing revision differences
// 'page' - the revised page itself
// 'rev' - page showing all revisions
// 'current' - most recent revision of page
//Set target to use when creating links - leave empty for same window
$conf['target']['wiki'] = '';
......
......@@ -110,17 +110,24 @@ function rssRecentChanges(&$rss,$num,$ltype,$ns){
}
$desc = cleanDesc($xhtml);
switch ($ltype){
case 'page':
$item->link = wl($id,'rev='.$recents[$id]['date'],true);
break;
case 'rev':
$item->link = wl($id,'do=revisions&rev='.$recents[$id]['date'],true);
break;
default:
$item->link = wl($id,'do=diff&'.$recents[$id]['date'],true);
}
if(empty($ltype))
$ltype = $conf['rss_linkto'];
switch ($ltype){
case 'page':
$item->link = wl($id,'rev='.$recents[$id]['date'],true);
break;
case 'rev':
$item->link = wl($id,'do=revisions&rev='.$recents[$id]['date'],true);
break;
case 'current':
$item->link = wl($id, '', true);
break;
case 'diff':
default:
$item->link = wl($id,'do=diff&'.$recents[$id]['date'],true);
}
$item->description = $desc;
$item->date = date('r',$recents[$id]['date']);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment