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

$this->postRssStatus($h);
is coming before line # 77

// 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,


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');
please correct me if i m wrong..

//
Mirza