From: Andrew Dolgov Date: Sat, 15 Sep 2012 13:17:38 +0000 (+0400) Subject: Revert "auth internal: fix otp check clause" X-Git-Tag: 1.6.0~39 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=d031f6981353c7876e7407e225df520a61473f8c;p=tt-rss.git Revert "auth internal: fix otp check clause" This reverts commit 72d0e9b33f8f83969d738d71029ce272336b9cee. --- diff --git a/classes/auth/internal.php b/classes/auth/internal.php index 8ae762b8..92c19eb6 100644 --- a/classes/auth/internal.php +++ b/classes/auth/internal.php @@ -9,7 +9,7 @@ class Auth_Internal extends Auth_Base { $otp = db_escape_string($_REQUEST["otp"]); if (get_schema_version($this->link) > 96) { - if (version_compare(PHP_VERSION, '5.3.0') >= 0 && (!defined('AUTH_DISABLE_OTP') || !AUTH_DISABLE_OTP)) { + if (version_compare(PHP_VERSION, '5.3.0') >= 0 && !defined('AUTH_DISABLE_OTP') || !AUTH_DISABLE_OTP) { $result = db_query($this->link, "SELECT otp_enabled,salt FROM ttrss_users WHERE login = '$login'");