From: Chris S. <san...@us...> - 2005-10-03 09:09:59
|
Update of /cvsroot/stack/stack-1-0 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11447 Modified Files: vista.php Log Message: Ensure the username from Vista is in lower case! Index: vista.php =================================================================== RCS file: /cvsroot/stack/stack-1-0/vista.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** vista.php 20 Sep 2005 16:32:24 -0000 1.1 --- vista.php 3 Oct 2005 09:09:40 -0000 1.2 *************** *** 48,53 **** if (array_key_exists('?username',$_GET)) { ! $username = $_GET['?username']; ! $userID = $_GET['userID']; $user = stack_user_login_vista($username,$userID); --- 48,53 ---- if (array_key_exists('?username',$_GET)) { ! $username = strtolower($_GET['?username']); ! $userID = strtolower($_GET['userID']); $user = stack_user_login_vista($username,$userID); |