mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-11 13:58:54 +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
|
else
|
||||||
{
|
{
|
||||||
$sql_ary = array(
|
$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(
|
'FROM' => array(
|
||||||
USERS_TABLE => 'u',
|
USERS_TABLE => 'u',
|
||||||
),
|
),
|
||||||
|
|
Loading…
Add table
Reference in a new issue