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.
"Technorati Tags : " + @Implode("<a href=\"http://technorati.com/tag/" + @Explode(Technorati_Tag_List ; ";" ) + "\">" + @Explode(Technorati_Tag_List ; ";" ) + "</a>";" ")
This could have been a good Show-n-Tell Thursday topic.

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="" escaped="" highlight="">