src/cm/client.py
changeset 400 b82f4f749b44
parent 323 addba77f2f90
child 426 7c31b3a1284b
--- 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()