1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-17 15:11:40 +02:00

Merge PR #1219 branch 'bantu/ticket/11343' into develop-olympus

# By Andreas Fischer
# Via Andreas Fischer
* bantu/ticket/11343:
  [ticket/11343] Remove spare parentheses.
  [ticket/11343] Remove spare space.
  [ticket/11343] Use === when checking stored user_actkey against user input.
This commit is contained in:
Oleg Pudeyev
2013-01-27 17:45:55 -05:00

View File

@@ -51,7 +51,7 @@ class ucp_activate
trigger_error('ALREADY_ACTIVATED'); trigger_error('ALREADY_ACTIVATED');
} }
if (($user_row['user_inactive_reason'] == INACTIVE_MANUAL) || $user_row['user_actkey'] != $key) if ($user_row['user_inactive_reason'] == INACTIVE_MANUAL || $user_row['user_actkey'] !== $key)
{ {
trigger_error('WRONG_ACTIVATION'); trigger_error('WRONG_ACTIVATION');
} }