Hey,
i want to know is it a bug, pending posts are showing in rss.
post_rss plugin which is located here content/plugins/post_rss/libs/PostRssFunctions.php line # 71
is coming before line # 77$this->postRssStatus($h);
// set post rss filter defaults if not already set
$this->checkPostRssDefaults($h);
by default it looks like,
public function postRssFeedQuery($h)
{
// Feed details
$h->vars['postRssFeed']['title'] = SITE_NAME;
$h->vars['postRssFeed']['link'] = BASEURL;
// description set further down...
// Limit:
if ($h->cage->get->keyExists('limit')) {
$h->vars['postRssLimit'] = $h->cage->get->getInt('limit');
}
$this->postRssStatus($h);
// allow other plugins to create a feed
$h->pluginHook('post_rss_feed');
// set post rss filter defaults if not already set
$this->checkPostRssDefaults($h);
if i am not wrong it should b,
please correct me if i m wrong..public function postRssFeedQuery($h)
{
// Feed details
$h->vars['postRssFeed']['title'] = SITE_NAME;
$h->vars['postRssFeed']['link'] = BASEURL;
// description set further down...
// Limit:
if ($h->cage->get->keyExists('limit')) {
$h->vars['postRssLimit'] = $h->cage->get->getInt('limit');
}
// set post rss filter defaults if not already set
$this->checkPostRssDefaults($h);
$this->postRssStatus($h);
// allow other plugins to create a feed
$h->pluginHook('post_rss_feed');
//
Mirza



Reply With Quote

Bookmarks