aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2017-04-18 19:33:05 +0200
committerMarc Alexander <admin@m-a-styles.de>2017-04-18 19:33:05 +0200
commit771be9310de71978c81ef9ddf7b61fb849069ce2 (patch)
tree3fff66e605bace99a510722b95d625e849240f34 /phpBB/includes
parente6a0e4caed0262507926bf70c86533efd2512e26 (diff)
downloadforums-771be9310de71978c81ef9ddf7b61fb849069ce2.tar
forums-771be9310de71978c81ef9ddf7b61fb849069ce2.tar.gz
forums-771be9310de71978c81ef9ddf7b61fb849069ce2.tar.bz2
forums-771be9310de71978c81ef9ddf7b61fb849069ce2.tar.xz
forums-771be9310de71978c81ef9ddf7b61fb849069ce2.zip
[ticket/8116] Correctly get other users who posted under IP
PHPBB3-8116
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/mcp/mcp_post.php8
1 files changed, 2 insertions, 6 deletions
diff --git a/phpBB/includes/mcp/mcp_post.php b/phpBB/includes/mcp/mcp_post.php
index dfc43d6cac..b5f2bf4f02 100644
--- a/phpBB/includes/mcp/mcp_post.php
+++ b/phpBB/includes/mcp/mcp_post.php
@@ -379,6 +379,7 @@ function mcp_post_details($id, $mode, $action)
$sql = 'SELECT poster_id, COUNT(poster_id) as postings
FROM ' . POSTS_TABLE . "
WHERE poster_ip = '" . $db->sql_escape($post_info['poster_ip']) . "'
+ AND poster_id <> " . (int) $post_info['poster_id'] . "
GROUP BY poster_id
ORDER BY postings DESC, poster_id ASC";
$result = $db->sql_query_limit($sql, $config['posts_per_page'], $start_users);
@@ -387,12 +388,7 @@ function mcp_post_details($id, $mode, $action)
while ($row = $db->sql_fetchrow($result))
{
$page_users++;
-
- // Fill the user select list with users who have posted under this IP
- if ($row['poster_id'] != $post_info['poster_id'])
- {
- $users_ary[$row['poster_id']] = $row;
- }
+ $users_ary[$row['poster_id']] = $row;
}
$db->sql_freeresult($result);