Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Poirier2016-05-19 14:21:35 +0000
committerEric Poirier2016-05-19 14:22:18 +0000
commit0611a521bcaaf56c9234d5d109331e06fabb7f26 (patch)
treeafc673f6f2fee4d3081cefa0f615e8a9dc8cebc5
parent2a2d53324e30e290aab9f5df19504e0411f9d69a (diff)
downloadeclipse.org-common-0611a521bcaaf56c9234d5d109331e06fabb7f26.tar.gz
eclipse.org-common-0611a521bcaaf56c9234d5d109331e06fabb7f26.tar.xz
eclipse.org-common-0611a521bcaaf56c9234d5d109331e06fabb7f26.zip
Bug 493090 - Making legal name field editable
Signed-off-by: Eric Poirier <eric@eclipse.org>
-rw-r--r--classes/users/tpl/cla_form.tpl.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/users/tpl/cla_form.tpl.php b/classes/users/tpl/cla_form.tpl.php
index e71dd1f9..713c65cf 100644
--- a/classes/users/tpl/cla_form.tpl.php
+++ b/classes/users/tpl/cla_form.tpl.php
@@ -96,7 +96,7 @@
<div class="form-group">
<label for="edit-legal-name">Legal Name <span class="form-required"
title="This field is required.">*</span></label>
- <input readonly
+ <input
class="form-control form-text" type="text"
id="edit-legal-name" name="legal_name" value="<?php print $this->Friend->getFirstName() . ' ' . $this->Friend->getLastName(); ?>"
size="60" maxlength="128" />

Back to the top