summaryrefslogtreecommitdiff
path: root/classes/auth
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-09-14 02:54:32 +0400
committerAndrew Dolgov <[email protected]>2012-09-14 02:54:32 +0400
commit72d0e9b33f8f83969d738d71029ce272336b9cee (patch)
tree89cfad8f1efa10bee68e711c841ea6e3900a556d /classes/auth
parent1835f145a8f4d450e33b15faf7d50437731a8793 (diff)
auth internal: fix otp check clause
Diffstat (limited to 'classes/auth')
-rw-r--r--classes/auth/internal.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/auth/internal.php b/classes/auth/internal.php
index 92c19eb64..8ae762b8a 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'");