Quote:
Originally Posted by pspcrazy
Also can you not make it case sensitive? Atm my username is Pspcrazy, and i usually type pspcrazy, but it doesn't accept it from wp. It only accepts Pspcrazy now which is wierd.
|
I will be applying this to the next version, but for now, open functions_vbridge.php and find this line:
Code:
if ( !$user || ($user->user_login != strtolower$username) ) {
Replace with:
Code:
if ( !$user || (strtolower($user->user_login) != strtolower($username)) ) {