aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_posting.php
diff options
context:
space:
mode:
authorLudovic Arnaud <ludovic_arnaud@users.sourceforge.net>2003-04-09 22:17:55 +0000
committerLudovic Arnaud <ludovic_arnaud@users.sourceforge.net>2003-04-09 22:17:55 +0000
commitc17e275080d8b1834016d80687ccd5a4ecc674a7 (patch)
treec5715eac921d5fb50feb3155d3589b99c3f0d5a2 /phpBB/includes/functions_posting.php
parente5e9fd9cbacaec04f0df45c0c05a3944c3d47e74 (diff)
downloadforums-c17e275080d8b1834016d80687ccd5a4ecc674a7.tar
forums-c17e275080d8b1834016d80687ccd5a4ecc674a7.tar.gz
forums-c17e275080d8b1834016d80687ccd5a4ecc674a7.tar.bz2
forums-c17e275080d8b1834016d80687ccd5a4ecc674a7.tar.xz
forums-c17e275080d8b1834016d80687ccd5a4ecc674a7.zip
Weekly update: MCP templates. Forms renamed to 'main', added mcp_jumpbox.html for easy jumping and mcp_foruminfo.html.
Not too happy with HTML though =" templates\subSilver\mcp_forum.html templates\subSilver\mcp_foruminfo.html templates\subSilver\mcp_front.html templates\subSilver\mcp_header.html templates\subSilver\mcp_jumpbox.html templates\subSilver\mcp_move.html templates\subSilver\mcp_post.html templates\subSilver\mcp_viewip.html templates\subSilver\mcp_viewlogs.html git-svn-id: file:///svn/phpbb/trunk@3800 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 cddd1a0dda..0955bf677d 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_get('f_read', $forum_id))
+ if (!$auth->acl_gets('f_read', 'm_', 'a_', $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('icon_post', $user->lang['POST']),
+ 'MINI_POST_IMG' => $user->img('goto_post', $user->lang['POST']),
'POSTER_NAME' => $poster,
'POST_DATE' => $user->format_date($row['post_time']),
'POST_SUBJECT' => $post_subject,