Do not transform commentator's displayed name in lower case when posting comment.
authorProduction Moz <dev@sopinspace.com>
Thu, 15 Mar 2012 11:19:48 +0100
changeset 400 b82f4f749b44
parent 399 cb7209d5caa9
child 401 ada83f9211e3
child 405 3d03b25cd90d
Do not transform commentator's displayed name in lower case when posting comment.
src/cm/client.py
--- a/src/cm/client.py	Fri Jan 27 11:45:19 2012 +0100
+++ b/src/cm/client.py	Thu Mar 15 11:19:48 2012 +0100
@@ -102,7 +102,9 @@
     name = request.POST.get('name', None)
     email = request.POST.get('email', None)
     if name != None :
-        name = name.lower().strip()
+        # GIB: Is there any good reasons to transform the name into lower case?
+        #name = name.lower().strip()
+        name = name.strip()
     if email != None :
         email = email.lower().strip()