Hi sorry if this is the wrong place to post a bug. I tried gemini but public only have access to log CORE bugs (??)
In Help\TutorialController.vb Public Function GetSearchItems the objSearchItemInfo Content param is not placing a space between .ShortDesc & .Description so the first item/word in description is directly concatenated with the ShortDesc thus making it unsearchable (unless ShortDesc has a space at the end). It is a simple change to just use .ShortDesc & " " & .Description.
Also the KeyWords are not getting added to the search index. For that you would need to change to:
.ShortDesc & " " & .Description. & " " & .KeyWords
KeyWords help says to use ";" to seperate KeyWords but that may be a bad idea .. but I dont know how search indexing works with ";" ??
I hope this helps.
Luka