In method DefaultUser::loginWithPassword() the condition for an empty password
is not checked properly. Instead of
if ( ... $password = "")
the correct syntax is
if ( ... $password == "")
with double equality signs.
Original issue reported on code.google.com by alois.ba...@gmx.de on 14 Jun 2011 at 8:28
Original issue reported on code.google.com by
alois.ba...@gmx.de
on 14 Jun 2011 at 8:28