diff options
author | 3D-I <marktravai@gmail.com> | 2018-11-30 09:11:35 +0100 |
---|---|---|
committer | 3D-I <marktravai@gmail.com> | 2018-11-30 09:12:10 +0100 |
commit | afcc713d39a05b8aec54f046b1f56170d56f4ac3 (patch) | |
tree | 1a5f51fd0f89782caa0c38f0711a1ec2f9fc9891 /phpBB/memberlist.php | |
parent | [ticket/15889] Add core.memberlist_modify_memberrow_sql (diff) | |
download | phpbb-afcc713d39a05b8aec54f046b1f56170d56f4ac3.tar.gz phpbb-afcc713d39a05b8aec54f046b1f56170d56f4ac3.tar.bz2 phpbb-afcc713d39a05b8aec54f046b1f56170d56f4ac3.zip |
[ticket/15889] Add core.memberlist_modify_memberrow_sql
fix select all on users table
PHPBB3-15889
Diffstat (limited to 'phpBB/memberlist.php')
-rw-r--r-- | phpBB/memberlist.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/memberlist.php b/phpBB/memberlist.php index ddebf5124c..97d709163a 100644 --- a/phpBB/memberlist.php +++ b/phpBB/memberlist.php @@ -1480,7 +1480,7 @@ switch ($mode) else { $sql_array = array( - 'SELECT' => '*', + 'SELECT' => 'u.*', 'FROM' => array( USERS_TABLE => 'u' ), |