summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Stanley <fungi@yuggoth.org>2012-09-13 18:02:43 +0000
committerMarc Petit-Huguenin <petithug@gmail.com>2012-12-12 07:52:05 -0800
commit818b53654cf9f810c22fec2689b1e3d413bc6927 (patch)
tree3bf440ab7e20e373afd772e78d4044b0ef5a9007
parentcc446ff460d5ca64dda6fe3a232f095b783de47a (diff)
Fix CLA hyperlink on account registration page.
The New Contributor Agreement hyperlink on the Account Registration page is malformed, compared to the working one in the Account Settings menu. This adjusts the way that link is formed. Bug: Issue 1076 Change-Id: I4ef42411369e2247231214922030b928edaf5936
-rw-r--r--gerrit-gwtui/src/main/java/com/google/gerrit/client/account/RegisterScreen.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/gerrit-gwtui/src/main/java/com/google/gerrit/client/account/RegisterScreen.java b/gerrit-gwtui/src/main/java/com/google/gerrit/client/account/RegisterScreen.java
index 084ea6f89f..2810931e80 100644
--- a/gerrit-gwtui/src/main/java/com/google/gerrit/client/account/RegisterScreen.java
+++ b/gerrit-gwtui/src/main/java/com/google/gerrit/client/account/RegisterScreen.java
@@ -125,7 +125,7 @@ public class RegisterScreen extends AccountScreen {
agreementGroup.add(whyAgreement);
choices.add(new InlineHyperlink(Util.C.newAgreement(),
- PageLinks.SETTINGS_NEW_AGREEMENT + "," + nextToken));
+ PageLinks.SETTINGS_NEW_AGREEMENT));
choices
.add(new InlineHyperlink(Util.C.welcomeAgreementLater(), nextToken));
formBody.add(agreementGroup);