Closed (fixed)
Project:
Feeds Topics
Version:
6.x-1.x-dev
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Reporter:
Created:
28 Jan 2011 at 03:18 UTC
Updated:
19 Jun 2011 at 21:31 UTC
I Found a Bug in FeedsTopicParser.inc
the function getMappingSources() was not implemented
the module doesnt work
i fixed it for the moment manually
with code:
/**
* Add the extra mapping sources provided by this parser.
*/
public function getMappingSources() {
return parent::getMappingSources() + array(
'title' => array(
'title' => t('Title')
),
'url' => array(
'url' => t('URL')
)
);
}
now it works
I can fix it completely
but i am a newbie in drupal Community and i dont know how i can help in this project
please tell me how i can help
Comments
Comment #1
infojunkieFixed in the latest dev. Thanks for your report.