View Single Post
Old August 18th, 2009, 11:09 PM   #9 (permalink)
wacnstac
Member
Verified Customer
 
Join Date: Apr 2002
Posts: 423
Try this..... I had to fix this in 4.1 and obviously the bug fix didn't make it into 4.2. Can I interest you guys in some good issue tracking software

Quote:
if ( $Globals['editor'] != "off" )
{
$desc = un_htmlspecialchars($desc);
if ( VB3_COMMWYSIWYG == "on" ) $desc = un_htmlspecialchars($desc);
$desc = convert_returns(convert_markups($desc));
}
else
{
if ( VB3_COMMWYSIWYG == "on" ) $desc = un_htmlspecialchars(convert_markups($desc));
$desc = convert_returns(convert_markups($desc));
}
Needs to be:

Quote:
if ( VB3_COMMWYSIWYG == "on" ) $desc = un_htmlspecialchars(convert_markups($desc));
else $desc = convert_returns(convert_markups($desc));
if ( $Globals['editor'] != "off" ) $desc = un_htmlspecialchars($desc);
Now is there anything we can do about the jacked alignment of thumbs with long category names?
wacnstac is offline   Reply With Quote