The fix will be in the next build. In the meantime you can fix it in your version like so:
- Open the file AwareIM/Tomcat/webapps/AwareIM/aware_ext/aware.js
- Search for "createHelpButton" and locate a function that looks like this:
createHelpButton: function (field, first)
{
var attrDescr = field.getAttributeDescription ();
if (attrDescr && attrDescr.length > 0)
{
var elp = this.findParent (field);
if (! elp)
return null;
....
- Add the following line after "if":
var attrDescr = Ext.util.Format.htmlDecode (attrDescr);
so the function becomes:
createHelpButton: function (field, first)
{
var attrDescr = field.getAttributeDescription ();
if (attrDescr && attrDescr.length > 0)
{
var attrDescr = Ext.util.Format.htmlDecode (attrDescr);
var elp = this.findParent (field);
if (! elp)
return null;
...
- Save the file and refresh your browser.
This should fix it.