diff options
author | Marc Alexander <admin@m-a-styles.de> | 2014-05-30 23:00:57 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2014-06-01 21:31:05 +0200 |
commit | 4698f6928e44a24a7a10ff8b4fed2c1a24cab338 (patch) | |
tree | edc7bba181871a9a87718a5e0662eaa3b0ccd4b6 /phpBB/phpbb/auth/provider/oauth/oauth.php | |
parent | 0a1e21c17fe6181d3826ff88c86e4d040aff447f (diff) | |
download | forums-4698f6928e44a24a7a10ff8b4fed2c1a24cab338.tar forums-4698f6928e44a24a7a10ff8b4fed2c1a24cab338.tar.gz forums-4698f6928e44a24a7a10ff8b4fed2c1a24cab338.tar.bz2 forums-4698f6928e44a24a7a10ff8b4fed2c1a24cab338.tar.xz forums-4698f6928e44a24a7a10ff8b4fed2c1a24cab338.zip |
[ticket/12352] Remove usages of user_pass_convert column
PHPBB3-12352
Diffstat (limited to 'phpBB/phpbb/auth/provider/oauth/oauth.php')
-rw-r--r-- | phpBB/phpbb/auth/provider/oauth/oauth.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/auth/provider/oauth/oauth.php b/phpBB/phpbb/auth/provider/oauth/oauth.php index 2230ce15d1..07430bb42a 100644 --- a/phpBB/phpbb/auth/provider/oauth/oauth.php +++ b/phpBB/phpbb/auth/provider/oauth/oauth.php @@ -215,7 +215,7 @@ class oauth extends \phpbb\auth\provider\base } // Retrieve the user's account - $sql = 'SELECT user_id, username, user_password, user_passchg, user_pass_convert, user_email, user_type, user_login_attempts + $sql = 'SELECT user_id, username, user_password, user_passchg, user_email, user_type, user_login_attempts FROM ' . $this->users_table . ' WHERE user_id = ' . (int) $row['user_id']; $result = $this->db->sql_query($sql); |