did take quick peak at the code and noticed that there is also an option to strip images from the description. when that option is off (not display images) the img part is stripped from the description.
furthermore there is also a $rssfeed where the layout of xml is been defined. in there is also an image tag, perhaps we can do something with it.
it seems the relevant files of the RSSall package are:
- components/com_rssall/rssall.php (query)
- administrator/components/com_rssall/config.xml (settings)
Within the query, line 84, we do have the query do a retrieving of the datdescription. think that one is seen as the description needed within line 182 (descr). $maintext is used within line 204.
i'm not that familiar with the while statement (line 175) but think we can add an additional variable and call it $image, that variable we can define.
perhaps we can in line 84 this code in the query
and around line 204
# added so you can do some more things with it
$image = $eventimage;
<description><![CDATA['.$image.$maintext.']]></description>
//
adapting it to J2.5 is not going to happen as it will require to much code changing and think there are better options for that version. Will install Joomla 1.5 to see if we can make the display of images to work but that will be for Friday
Just an extra note:
did see it's possible in J2.5 to use JFeedimage to put an image on top of the feed but that's going to be a different story.