forked from I2P_Developers/i2p.i2p
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:
@ -284,7 +284,7 @@ public class ConfigClientsHelper extends HelperBase {
|
|||||||
buf.append(escapeddesc);
|
buf.append(escapeddesc);
|
||||||
buf.append("\" >");
|
buf.append("\" >");
|
||||||
} else {
|
} else {
|
||||||
buf.append(escapeddesc);
|
buf.append(desc);
|
||||||
}
|
}
|
||||||
buf.append("</td></tr>\n");
|
buf.append("</td></tr>\n");
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user