Skip to content

Commit a609851

Browse files
committed
Add HtmlString.of()
1 parent 1d2e558 commit a609851

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cluster/src/org/labkey/cluster/ClusterController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ public ModelAndView getConfirmView(JobIdsForm form, BindException errors) throws
118118

119119
return new HtmlView(HtmlString.unsafe("This will change the status of the pipeline job with the provided ID to Cancelled. It is intended to help the situation when the normal UI leave a job in a perpetual 'Cancelling' state." +
120120
"To continue, enter a comma-delimited list of Job IDs and hit submit:<br><br>" +
121-
"<label>Enter Job ID(s): </label><input name=\"jobIds\" value = \"" + form.getJobIds() + "\"><br>"));
121+
"<label>Enter Job ID(s): </label><input name=\"jobIds\" value = \"" + HtmlString.of(form.getJobIds()) + "\"><br>"));
122122
}
123123

124124
public boolean handlePost(JobIdsForm form, BindException errors) throws Exception

0 commit comments

Comments
 (0)