In line 170 : the developer used drupal_add_feed function without checking if the user enabled the clean_url or not .. he assumed it is enabled by default which raise error when trying to get it with no clean url enabled ..
i did found a solution for that by checking if clean url is enabled by changing the line 170 to :

if (!variable_get("clean_url",0)){
		    $feedlink = "?q=article/feed";
	    }else{
		    $feedlink = "article/feed";
	    }
      $feed = drupal_add_feed($feedlink, t('Articles'));

Thanks~

Comments

msameer’s picture

Assigned: Unassigned » msameer

It should be:

$feed = drupal_add_feed(url('article/feed'), t('Articles'));

Will fix it tonight.

msameer’s picture

Status: Active » Fixed

Fixed in CVS

Anonymous’s picture

Status: Fixed » Closed (fixed)