1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-09-01 20:33:16 +02:00

Yet more mildly fudged code ... just to get something up, minor fixes/updates elsewhere

git-svn-id: file:///svn/phpbb/trunk@4004 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen
2003-05-11 00:58:14 +00:00
parent 549537b9d5
commit 30fd2486d8
10 changed files with 524 additions and 313 deletions

View File

@@ -342,7 +342,11 @@ if ($forum_data['forum_type'] == FORUM_POST)
foreach ($row_ary as $row)
{
$topic_id = $row['topic_id'];
$replies = ($auth->acl_get('m_approve', $forum_id)) ? $row['topic_replies_real'] : $row['topic_replies'];
// How many replies? hhmmm 1? 2? let's find out
$replies = ($auth->acl_get('m_approve')) ? $row['topic_replies_real'] : $row['topic_replies'];
// Type and folder
$topic_type = '';
@@ -426,8 +430,6 @@ if ($forum_data['forum_type'] == FORUM_POST)
// Goto message generation
$replies = ($auth->acl_get('m_approve')) ? $row['topic_replies_real'] : $row['topic_replies'];
if (($replies + 1) > intval($config['posts_per_page']))
{
$total_pages = ceil(($replies + 1) / intval($config['posts_per_page']));