checkin for providing cvs commandline list.

git-svn-id: file:///svn/phpbb/trunk@5587 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen 2006-02-25 20:46:44 +00:00
parent 597b1ebced
commit cfec27c968

View file

@ -26,6 +26,7 @@ function mcp_front_view($id, $mode, $action)
$forum_id = request_var('f', 0); $forum_id = request_var('f', 0);
$template->assign_var('S_SHOW_UNAPPROVED', (!empty($forum_list)) ? true : false); $template->assign_var('S_SHOW_UNAPPROVED', (!empty($forum_list)) ? true : false);
if (!empty($forum_list)) if (!empty($forum_list))
{ {
$sql = 'SELECT COUNT(post_id) AS total $sql = 'SELECT COUNT(post_id) AS total
@ -33,8 +34,8 @@ function mcp_front_view($id, $mode, $action)
WHERE forum_id IN (0, ' . implode(', ', $forum_list) . ') WHERE forum_id IN (0, ' . implode(', ', $forum_list) . ')
AND post_approved = 0'; AND post_approved = 0';
$result = $db->sql_query($sql); $result = $db->sql_query($sql);
$row = $db->sql_fetchrow($result); $total = (int) $db->sql_fetchfield('total', 0, $result);
$total = $row['total']; $db->sql_freeresult($result);
if ($total) if ($total)
{ {