aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/memberlist.php
diff options
context:
space:
mode:
author3D-I <marktravai@gmail.com>2018-11-30 09:11:35 +0100
committer3D-I <marktravai@gmail.com>2018-11-30 09:12:10 +0100
commitafcc713d39a05b8aec54f046b1f56170d56f4ac3 (patch)
tree1a5f51fd0f89782caa0c38f0711a1ec2f9fc9891 /phpBB/memberlist.php
parent73b709d0caf6ef3bd83c23192e0aa12c54952a66 (diff)
downloadforums-afcc713d39a05b8aec54f046b1f56170d56f4ac3.tar
forums-afcc713d39a05b8aec54f046b1f56170d56f4ac3.tar.gz
forums-afcc713d39a05b8aec54f046b1f56170d56f4ac3.tar.bz2
forums-afcc713d39a05b8aec54f046b1f56170d56f4ac3.tar.xz
forums-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.php2
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'
),