From: Matthijs Kooijman <matthijs@stdin.nl>
Date: Thu, 2 Jul 2009 15:01:44 +0000 (+0200)
Subject: Disallow changing of the username in mysql_login.
X-Git-Url: https://git.stderr.nl/gitweb?a=commitdiff_plain;h=f029e903020a60684cc2fb236829818d798da757;p=matthijs%2Fprojects%2Fwipi.git

Disallow changing of the username in mysql_login.
---

diff --git a/conf/auth/mysql_login.py b/conf/auth/mysql_login.py
index 1e3558f..95b3aa6 100644
--- a/conf/auth/mysql_login.py
+++ b/conf/auth/mysql_login.py
@@ -118,7 +118,7 @@ class mysql_login(BaseAuth):
 
             if self.verbose: request.log("mysql_login: authenticated %s (email %s)" % (username, email))
 
-            u = user.User(request, auth_username=username, auth_method=self.name, auth_attribs=('password', 'email', ))
+            u = user.User(request, auth_username=username, auth_method=self.name, auth_attribs=('name', 'password', 'email'))
             u.email = email
             #u.remember_me = 0 # 0 enforces cookie_lifetime config param
             u.create_or_update(True)