diff options
| author | Christian Fowler <spider@viovio.com> | 2012-04-18 17:00:44 -0400 |
|---|---|---|
| committer | Christian Fowler <spider@viovio.com> | 2012-04-18 17:00:44 -0400 |
| commit | f792d72dc5a1788d0b5f6f0c59b4c39b468c949d (patch) | |
| tree | ef9b1da471f9f8b78ff16420ec419c21a9aad7c1 /articles_rss.php | |
| parent | 9dbee19cc5a1b71d982918b1452ce4184ed3ecf2 (diff) | |
| download | articles-f792d72dc5a1788d0b5f6f0c59b4c39b468c949d.tar.gz articles-f792d72dc5a1788d0b5f6f0c59b4c39b468c949d.tar.bz2 articles-f792d72dc5a1788d0b5f6f0c59b4c39b468c949d.zip | |
major migration of getDisplayUrl to ->getDisplayUrl and ::getDisplayUrlFromHash
Diffstat (limited to 'articles_rss.php')
| -rw-r--r-- | articles_rss.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/articles_rss.php b/articles_rss.php index a9d4a00..a2738a0 100644 --- a/articles_rss.php +++ b/articles_rss.php @@ -45,7 +45,7 @@ if( !$gBitUser->hasPermission( 'p_articles_read' ) ) { foreach( $feeds as $feed ) { $item = new FeedItem(); $item->title = $feed['title']; - $item->link = $articles->getDisplayUrl( $feed['article_id'] ); + $item->link = $articles->getDisplayUrl( $feed ); // show the full article in the feed $parseHash['content_id'] = $feed['content_id']; |
