summaryrefslogtreecommitdiff
path: root/articles_rss.php
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2007-06-10 14:36:57 +0000
committerMax Kremmel <xing@synapse.plus.com>2007-06-10 14:36:57 +0000
commit1752b88bb0ec9b7b6182eb0025e37a6aa4bf591c (patch)
tree733b0e42d7947429a2308c4d0597490e7b698a41 /articles_rss.php
parent390d6f944914577496e78283b4f75fc9abfa2b6a (diff)
downloadarticles-1752b88bb0ec9b7b6182eb0025e37a6aa4bf591c.tar.gz
articles-1752b88bb0ec9b7b6182eb0025e37a6aa4bf591c.tar.bz2
articles-1752b88bb0ec9b7b6182eb0025e37a6aa4bf591c.zip
use LIBERTY_SPLIT_REGEX
Diffstat (limited to 'articles_rss.php')
-rw-r--r--articles_rss.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/articles_rss.php b/articles_rss.php
index b4e25fe..cab93dc 100644
--- a/articles_rss.php
+++ b/articles_rss.php
@@ -1,6 +1,6 @@
<?php
/**
- * @version $Header: /cvsroot/bitweaver/_bit_articles/articles_rss.php,v 1.17 2007/01/07 10:48:29 squareing Exp $
+ * @version $Header: /cvsroot/bitweaver/_bit_articles/articles_rss.php,v 1.18 2007/06/10 14:36:57 squareing Exp $
* @package article
* @subpackage functions
*/
@@ -48,7 +48,7 @@ if( !$gBitUser->hasPermission( 'p_articles_read' ) ) {
// show the full article in the feed
$parseHash['content_id'] = $feed['content_id'];
$parseHash['format_guid'] = $feed['format_guid'];
- $parseHash['data'] = preg_replace( ARTICLE_SPLIT_REGEX, "", $feed['data'] );
+ $parseHash['data'] = preg_replace( LIBERTY_SPLIT_REGEX, "", $feed['data'] );
$item->description = $articles->parseData( $parseHash );
$item->date = ( int )$feed['publish_date'];