I have a custom module which produces an RSS feed.
It doesn't show more than 1 item.
Here's what I'm feeding the GetSearchItems:
Dim SearchItemCollection As New DotNetNuke.Services.Search.SearchItemInfoCollection
Dim SearchItem As DotNetNuke.Services.Search.SearchItemInfo
Dim x As Integer
For x = 1 To 3
SearchItem = New DotNetNuke.Services.Search.SearchItemInfo("Title" & x, "Description" & x, 1, Now(), ModInfo.ModuleID, "Test" & x, "Stuff" & x, x)
SearchItemCollection.Add(SearchItem)
Next x
Return SearchItemCollection
I also checked the SearchItems table and it has only 1 record.
It should show 3 records.
Any ideas?
Thanks,
--Erik