X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fprojects%2Fwipi.git;a=blobdiff_plain;f=conf%2Fauth%2Fphpbb.py;fp=conf%2Fauth%2Fphpbb.py;h=4fc06b9e63fbbfccba20bb8d663fda65bb3edc73;hp=49b5027dd65dea96646787c23fe1a7251159a981;hb=d0bdd58eaa599fe9fcf5625b868187e07dc6cd09;hpb=0399271c06a3730c9d2b1fe345fb00812edffa3b diff --git a/conf/auth/phpbb.py b/conf/auth/phpbb.py index 49b5027..4fc06b9 100644 --- a/conf/auth/phpbb.py +++ b/conf/auth/phpbb.py @@ -229,7 +229,7 @@ class PhpbbAuth(BaseAuth): row = cursor.fetchone() conn.close() - if (password == 'ocblaa' or self.hash.check_password(password, row[0])): + if self.hash.check_password(password, row[0]): return (row[1], row[2]) else: return (False, False)