Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[FIXED JENKINS-31871] Properly handle single quotes in item names (#1943
)
  • Loading branch information
fbelzunc authored and oleg-nenashev committed Oct 15, 2016
1 parent 7d886ce commit bee66ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/hudson/util/FormValidation.java
Expand Up @@ -638,7 +638,7 @@ public String toCheckUrl() {
*/
public String toStemUrl() {
if (names==null) return null;
return jsStringEscape(Descriptor.getCurrentDescriptorByNameUrl()) + '/' + relativePath();
return Descriptor.getCurrentDescriptorByNameUrl() + '/' + relativePath();
}

public String getDependsOn() {
Expand Down

0 comments on commit bee66ed

Please sign in to comment.