"Technorati Tags : " + @Implode("<a href=\"http://technorati.com/tag/" + @Explode(Technorati_Tag_List ; ";" ) + "\">" + @Explode(Technorati_Tag_List ; ";" ) + "</a>";" ")
Blogsphere 2.5 – Technorati fix
With the new 2.5 release of Blogsphere there is a bug with the handling of the new Technorati tagging. The root problem is the merging the list of tags with the HTML anchor tags. The original code did not using any parameters for the @Explode. With no second parameter @Explode with split the string into a list using a space, comma, or semicolan; thus the problem. By adding the second paramater of “;” only semicolan will be used to split the string. I made this change to the ‘Technorati_Tags’ field on the ‘SubForm_StoryFields’ subform.
This could have been a good Show-n-Tell Thursday topic.