mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 13:28:55 +00:00
[ticket/9581] Fix missing index
Add `u.user_lang` to the select statement to prevent "undefined index" errors. PHPBB3-9581
This commit is contained in:
parent
df76799d4b
commit
83ca730544
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ class acp_email
|
|||
else
|
||||
{
|
||||
$sql_ary = array(
|
||||
'SELECT' => 'u.username, u.username_clean, u.user_email, u.user_jabber, u.user_notify_type',
|
||||
'SELECT' => 'u.username, u.username_clean, u.user_email, u.user_jabber, u.user_lang, u.user_notify_type',
|
||||
'FROM' => array(
|
||||
USERS_TABLE => 'u',
|
||||
),
|
||||
|
|
Loading…
Add table
Reference in a new issue