Hi,
There is an upgrade script for the feed manager it should have run when you visited the setup page.
Does the file exist?
/Setup/applications/feed-manager/SchemaUpgradeScripts/0.0.0.6
If all else fails run this from query analyzer:
ALTER PROCEDURE [dbo].[mp_RssFeedEntries_SelectByModule]
/*
Author: Joe Audette
Created: 2008-10-01
Last Modified: 2009-08-04
*/
@ModuleGuid uniqueidentifier
AS
SELECT f.Author As FeedName,
e.*
FROM
[dbo].[mp_RssFeedEntries] e
JOIN [dbo].[mp_RssFeeds] f
ON e.FeedId = f.ItemID
WHERE
e.[ModuleGuid] = @ModuleGuid
ORDER BY e.[PubDate] DESC
GO
btw, please use the paste as text toolbar when pasting errors or code. Previously this was forced in FCKeditor, now I need to see how to do it in TinyMCE.
Best,
Joe