aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_posting.php
diff options
context:
space:
mode:
authorLudovic Arnaud <ludovic_arnaud@users.sourceforge.net>2003-04-10 01:58:18 +0000
committerLudovic Arnaud <ludovic_arnaud@users.sourceforge.net>2003-04-10 01:58:18 +0000
commit73b191a343a67356b788f84185df89d76aef2ce7 (patch)
tree413c9a4c522bfe82286a6d3bbe724ab615391ef9 /phpBB/includes/functions_posting.php
parentc0aedcc467086221dcb1c2da684cc2d7d8823b6e (diff)
downloadforums-73b191a343a67356b788f84185df89d76aef2ce7.tar
forums-73b191a343a67356b788f84185df89d76aef2ce7.tar.gz
forums-73b191a343a67356b788f84185df89d76aef2ce7.tar.bz2
forums-73b191a343a67356b788f84185df89d76aef2ce7.tar.xz
forums-73b191a343a67356b788f84185df89d76aef2ce7.zip
Did you know that if you use backslashes in a log message WinCVS freaks out and commit files at random? I didn't either.
git-svn-id: file:///svn/phpbb/trunk@3804 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_posting.php')
-rw-r--r--phpBB/includes/functions_posting.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php
index 0955bf677d..eea3c611ca 100644
--- a/phpBB/includes/functions_posting.php
+++ b/phpBB/includes/functions_posting.php
@@ -193,7 +193,7 @@ function topic_review($topic_id, $is_inline_review = false)
$forum_id = intval($row['forum_id']);
$topic_title = $row['topic_title'];
- if (!$auth->acl_gets('f_read', 'm_', 'a_', $forum_id))
+ if (!$auth->acl_gets('f_read', $forum_id))
{
trigger_error($user->lang['SORRY_AUTH_READ']);
}
@@ -251,7 +251,7 @@ function topic_review($topic_id, $is_inline_review = false)
}
$template->assign_block_vars('postrow', array(
- 'MINI_POST_IMG' => $user->img('goto_post', $user->lang['POST']),
+ 'MINI_POST_IMG' => $user->img('icon_post', $user->lang['POST']),
'POSTER_NAME' => $poster,
'POST_DATE' => $user->format_date($row['post_time']),
'POST_SUBJECT' => $post_subject,