Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
1.4.17, 1.5-RC3
-
None
Description
RequestsPage has the following code:
item.add(new Label("alteredObjects", new Model<String>(rd.getAlteredObjects()))).setEscapeModelStrings(false);
while it should be
item.add(new Label("alteredObjects", new Model<String>(rd.getAlteredObjects())).setEscapeModelStrings(false));
i.e. the label should not escape its model object.