aboutsummaryrefslogtreecommitdiff
path: root/rhodecode/model/forms.py
diff options
context:
space:
mode:
authorMarcin Kuzminski <marcin@python-works.com>2012-07-12 17:14:59 +0200
committerMarcin Kuzminski <marcin@python-works.com>2012-07-12 17:14:59 +0200
commit8072a818552d81ef02702988110deafe71fb82dc (patch)
treeb5934174f46378a93ff1fba64c00605bdb5d4ad4 /rhodecode/model/forms.py
parent34ef324510a6b7177242ae0a79316fa057045c83 (diff)
renamed some leftover name -> firstname
--HG-- branch : beta
Diffstat (limited to 'rhodecode/model/forms.py')
-rw-r--r--rhodecode/model/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rhodecode/model/forms.py b/rhodecode/model/forms.py
index de911e2b..d2b69760 100644
--- a/rhodecode/model/forms.py
+++ b/rhodecode/model/forms.py
@@ -151,7 +151,7 @@ def RegisterForm(edit=False, old_data={}):
v.UnicodeString(strip=False, min=6, not_empty=True)
)
active = v.StringBoolean(if_missing=False)
- name = v.UnicodeString(strip=True, min=1, not_empty=False)
+ firstname = v.UnicodeString(strip=True, min=1, not_empty=False)
lastname = v.UnicodeString(strip=True, min=1, not_empty=False)
email = All(v.Email(not_empty=True), v.UniqSystemEmail(old_data))