equal
deleted
inserted
replaced
100 |
100 |
101 def read_comment_args(request): |
101 def read_comment_args(request): |
102 name = request.POST.get('name', None) |
102 name = request.POST.get('name', None) |
103 email = request.POST.get('email', None) |
103 email = request.POST.get('email', None) |
104 if name != None : |
104 if name != None : |
105 name = name.lower().strip() |
105 # GIB: Is there any good reasons to transform the name into lower case? |
|
106 #name = name.lower().strip() |
|
107 name = name.strip() |
106 if email != None : |
108 if email != None : |
107 email = email.lower().strip() |
109 email = email.lower().strip() |
108 |
110 |
109 title = request.POST['title'].strip() |
111 title = request.POST['title'].strip() |
110 content = request.POST['content'].strip() |
112 content = request.POST['content'].strip() |