Di
Customer Service Rep.

|
We found a "bug" if you will with the announcement message block, if you enter a word with an apostrophe it shows the backslash apostrophe (needed as part of the PHP translation). It can be re translated and should. If anyone has the new version and wants to fix it, here is how. ALTERNATELY if you want us to fix it just make sure we have your current FTP info if you are not hosted with us and ask.
We will update the downloads here in a couple minutes.
Open lib.php and find:
"guest_message" => GUEST_MESSAGE,
"member_message" => MEMBER_MESSAGE, |
Replace it with:
"guest_message" => str_replace("'", "'", GUEST_MESSAGE),
"member_message" => str_replace("'", "'", MEMBER_MESSAGE), |
This happens other places throughout the WowBB code that is part of Ultra, if you notice it happening alert us and we can make it look right with a similar fix.
|