there is a tiny bug.
Quote:
<a href='$link' target='_blank' class='DEF' title='$description'>$text</a>
|
should be
Quote:
<a href='$link' target='_blank' class='DEF' title=$description>$text</a>
|
description without the quote.
because it looks like you had them defined somewhere else also, causing the link to show the title with double single quotes ''....'' instead of '....' like the other tags and therefore not displaying the title. Once I removed it in description, then it displayed the tag '....'
bad example:
<a href='http://www.ap.org/' target='_blank' class='DEF'
title=''International News Agency''>Associated Press</a>