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/includes | |
| 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/includes')
| -rw-r--r-- | phpBB/includes/acp/acp_users.php | 1 | ||||
| -rw-r--r-- | phpBB/includes/functions_user.php | 1 | ||||
| -rw-r--r-- | phpBB/includes/ucp/ucp_activate.php | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/phpBB/includes/acp/acp_users.php b/phpBB/includes/acp/acp_users.php index b653ddd13b..c25d6d36d1 100644 --- a/phpBB/includes/acp/acp_users.php +++ b/phpBB/includes/acp/acp_users.php @@ -922,7 +922,6 @@ class acp_users $sql_ary += array( 'user_password' => $passwords_manager->hash($data['new_password']), 'user_passchg' => time(), - 'user_pass_convert' => 0, ); $user->reset_login_keys($user_id); diff --git a/phpBB/includes/functions_user.php b/phpBB/includes/functions_user.php index 3dcb32350e..293a0dea52 100644 --- a/phpBB/includes/functions_user.php +++ b/phpBB/includes/functions_user.php @@ -184,7 +184,6 @@ function user_add($user_row, $cp_data = false) 'username' => $user_row['username'], 'username_clean' => $username_clean, 'user_password' => (isset($user_row['user_password'])) ? $user_row['user_password'] : '', - 'user_pass_convert' => 0, 'user_email' => strtolower($user_row['user_email']), 'user_email_hash' => phpbb_email_hash($user_row['user_email']), 'group_id' => $user_row['group_id'], diff --git a/phpBB/includes/ucp/ucp_activate.php b/phpBB/includes/ucp/ucp_activate.php index 06326e57e6..53dec89aad 100644 --- a/phpBB/includes/ucp/ucp_activate.php +++ b/phpBB/includes/ucp/ucp_activate.php @@ -78,7 +78,6 @@ class ucp_activate 'user_actkey' => '', 'user_password' => $user_row['user_newpasswd'], 'user_newpasswd' => '', - 'user_pass_convert' => 0, 'user_login_attempts' => 0, ); |
