1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/10308] fixes sql query, limit it to 1

instead of fetching all posts by user we limit the query to 1 to check if
a user has posts or not

PHPBB3-10308
This commit is contained in:
Dhruv Goel
2012-04-22 00:36:38 +05:30
parent cf303c3478
commit 164054f067
2 changed files with 5 additions and 5 deletions

View File

@@ -1009,11 +1009,11 @@ class acp_users
$user_row['posts_in_queue'] = (int) $db->sql_fetchfield('posts_in_queue');
$db->sql_freeresult($result);
$sql = 'SELECT COUNT(post_id) as user_total_posts
$sql = 'SELECT post_id
FROM ' . POSTS_TABLE . '
WHERE poster_id = '. $user_id;
$result = $db->sql_query($sql);
$user_row['user_total_posts'] = (int) $db->sql_fetchfield('user_total_posts');
$result = $db->sql_query_limit($sql, 1);
$user_row['user_has_posts'] = ($db->sql_fetchfield('post_id') ? 1 : 0);
$db->sql_freeresult($result);
$template->assign_vars(array(
@@ -1043,7 +1043,7 @@ class acp_users
'USER_EMAIL' => $user_row['user_email'],
'USER_WARNINGS' => $user_row['user_warnings'],
'USER_POSTS' => $user_row['user_posts'],
'USER_TOTAL_POSTS' => $user_row['user_total_posts'],
'USER_HAS_POSTS' => $user_row['user_has_posts'],
'USER_INACTIVE_REASON' => $inactive_reason,
));