From 96a82ba0ae284089739e061d904017e869776e6f Mon Sep 17 00:00:00 2001 From: Loic d'Anterroches Date: Sun, 25 Jan 2009 21:00:21 +0100 Subject: [PATCH] Fixed issue 113, login name case problem. --- INSTALL.mdtext | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/INSTALL.mdtext b/INSTALL.mdtext index 54e8bb6..6173425 100644 --- a/INSTALL.mdtext +++ b/INSTALL.mdtext @@ -76,7 +76,7 @@ Here is the step-by-step installation procedure: $user = new Pluf_User(); $user->first_name = 'John'; $user->last_name = 'Doe'; // Required! - $user->login = 'doe'; + $user->login = 'doe'; // must be lowercase! $user->email = 'doe@example.com'; $user->password = 'yourpassword'; // the password is salted/hashed // in the database, so do not worry :)