diff options
| author | Lester Caine ext:(%22) <lester@lsces.co.uk> | 2012-04-16 12:48:27 +0100 |
|---|---|---|
| committer | Lester Caine ext:(%22) <lester@lsces.co.uk> | 2012-04-16 12:48:27 +0100 |
| commit | 49194f448ba13377adaa506e70c12d0b95c0f8ec (patch) | |
| tree | 0283b4673b058578f577aa581de595901b6e6e09 /wiki_rss.php | |
| parent | 2692c93b398f4909dcab104d62f759cffce539f9 (diff) | |
| download | wiki-49194f448ba13377adaa506e70c12d0b95c0f8ec.tar.gz wiki-49194f448ba13377adaa506e70c12d0b95c0f8ec.tar.bz2 wiki-49194f448ba13377adaa506e70c12d0b95c0f8ec.zip | |
Tidy up to remove 'STRICT' warnings
Split static and dynamic use of getDisplayUrl
Create getContentUrl as the instantiated version
parameters need to be identical across all classes
Diffstat (limited to 'wiki_rss.php')
| -rw-r--r-- | wiki_rss.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wiki_rss.php b/wiki_rss.php index d616c5b..4f6ab58 100644 --- a/wiki_rss.php +++ b/wiki_rss.php @@ -42,7 +42,7 @@ if( !$gBitUser->hasPermission( 'p_wiki_view_page' ) ) { foreach( $feeds as $feed ) { $item = new FeedItem(); $item->title = $feed['title']; - $item->link = BIT_BASE_URI.$wiki->getDisplayUrl( $feed['title'] ); + $item->link = BIT_BASE_URI.$wiki->getContentUrl( $feed['title'] ); $item->description = $wiki->parseData( $feed ); $item->date = ( int )$feed['last_modified']; |
