diff options
| author | spiderr <spiderr@bitweaver.org> | 2021-01-31 15:49:08 -0500 |
|---|---|---|
| committer | spiderr <spiderr@bitweaver.org> | 2021-01-31 15:49:08 -0500 |
| commit | 71cbc7db147f95c78fc3b26d61fc31ad3c6bc0fb (patch) | |
| tree | ce46484ab0b09a8e2b83caf71cff7335693f0649 /wiki_rss.php | |
| parent | d9d215a4a116dce855582c319303f87462b972b3 (diff) | |
| download | wiki-71cbc7db147f95c78fc3b26d61fc31ad3c6bc0fb.tar.gz wiki-71cbc7db147f95c78fc3b26d61fc31ad3c6bc0fb.tar.bz2 wiki-71cbc7db147f95c78fc3b26d61fc31ad3c6bc0fb.zip | |
PHP7 clean up dual static + object use of parseData, and create ->getParsedData & ::filterDataHash
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..f3eadb1 100644 --- a/wiki_rss.php +++ b/wiki_rss.php @@ -43,7 +43,7 @@ if( !$gBitUser->hasPermission( 'p_wiki_view_page' ) ) { $item = new FeedItem(); $item->title = $feed['title']; $item->link = BIT_BASE_URI.$wiki->getDisplayUrl( $feed['title'] ); - $item->description = $wiki->parseData( $feed ); + $item->description = BitPage::parseDataHash( $feed ); $item->date = ( int )$feed['last_modified']; $item->source = 'http://'.$_SERVER['HTTP_HOST'].BIT_ROOT_URL; |
