Skip to content

Commit

Permalink
Fix feeds broken by the recent RSSbuilder update
Browse files Browse the repository at this point in the history
  • Loading branch information
giallu committed Dec 29, 2008
1 parent 063ef75 commit b70c4da
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions issues_rss.php
Expand Up @@ -36,7 +36,7 @@

$t_core_path = config_get( 'core_path' );

require_once( $t_core_path . 'class.RSSBuilder.inc.php' );
require_once( $t_core_path . 'rssbuilder/class.RSSBuilder.inc.php' );
require_once( $t_core_path . 'user_api.php' );
require_once( $t_core_path . 'filter_api.php' );
require_once( $t_core_path . 'rss_api.php' );
Expand Down Expand Up @@ -207,7 +207,7 @@
# optional mod_im value for dispaying a different pic for every item
$image = '';

$rssfile->addItem( $about, $title, $link, $description, $subject, $date,
$rssfile->addRSSItem( $about, $title, $link, $description, $subject, $date,
$author, $comments, $image );
}

Expand Down
4 changes: 2 additions & 2 deletions news_rss.php
Expand Up @@ -27,7 +27,7 @@

$t_core_path = config_get( 'core_path' );

require_once( $t_core_path . 'class.RSSBuilder.inc.php' );
require_once( $t_core_path . 'rssbuilder/class.RSSBuilder.inc.php' );
require_once( $t_core_path . 'news_api.php' );
require_once( $t_core_path . 'project_api.php' );
require_once( $t_core_path . 'print_api.php' );
Expand Down Expand Up @@ -155,7 +155,7 @@
# optional mod_im value for dispaying a different pic for every item
$image = '';

$rssfile->addItem( $about, $title, $link, $description, $subject, $date,
$rssfile->addRSSItem( $about, $title, $link, $description, $subject, $date,
$author, $comments, $image);
}

Expand Down

0 comments on commit b70c4da

Please sign in to comment.