Skip to content

Commit

Permalink
Merge pull request #3 from etherfoundry/master
Browse files Browse the repository at this point in the history
Resolving issue JENKINS-13517 (DisplayName)
  • Loading branch information
olivergondza committed May 13, 2015
2 parents eb604e6 + 79bc4c4 commit 4fa35d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/hudson/plugins/copyProjectLink/CopyAction.java
Expand Up @@ -16,15 +16,15 @@ public CopyAction(T item) {
}

public String getCloneName() {
return item.getDisplayName() + "-clone";
return item.getName() + "-clone";
}

public T getItem() {
return item;
}

public String getItemName() {
return item.getDisplayName();
return item.getName();
}

public String getIconFileName() {
Expand Down

0 comments on commit 4fa35d6

Please sign in to comment.