Quote:
Originally Posted by silens12
how can i add this into vbadvanded cmps as a module? if you dont mind, i cant figure it out
|
You'd stick it in a vbadvanced template rather than the forumhome template...if thats what you mean.
Quote:
Originally Posted by lostguy
maybe next version allow add Smilies and choose color text and size .
|
Definitely smilies.
Quote:
Originally Posted by boandmichele
if you type an ampersand, it cuts off any text after that symbol. so if you type "hello & goodbye",
the only thing that will display is "hello"
|
Quote:
Originally Posted by R-D
Here's a fix for that error.
Open shoutbox.js.
Find:
Code:
htmlRequest.send('message='+document.shoutform.message.value);
Replace with:
Code:
htmlRequest.send('message='+escape(document.shoutform.message.value));
|
Ah yes, the ampersand is a special character and had to be escaped...great fix! Will be added to next version.