Fix for #588 part 5: Undo escaping of description when just displaying it

This was interfering with the plugins section, where HTML is intentionally
passed into the description field. Now, only when the description field is
being plugged into the value property of an input tag will it be escaped.
This commit is contained in:
str4d
2012-01-17 22:26:00 +00:00
parent 38dba5d19a
commit dafd722f20

View File

@ -284,7 +284,7 @@ public class ConfigClientsHelper extends HelperBase {
buf.append(escapeddesc);
buf.append("\" >");
} else {
buf.append(escapeddesc);
buf.append(desc);
}
buf.append("</td></tr>\n");
}