diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-04-01 00:05:50 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-04-01 00:05:50 +0000 |
commit | 3257af80f0f510c11b4d7370bebf9c580a524d49 (patch) | |
tree | 0831d3273d76c8550e3aadf5b0c9ab8863592e25 | |
parent | 2b253d9b51a401a5f8345b711978a665a46e1dfe (diff) | |
download | forums-3257af80f0f510c11b4d7370bebf9c580a524d49.tar forums-3257af80f0f510c11b4d7370bebf9c580a524d49.tar.gz forums-3257af80f0f510c11b4d7370bebf9c580a524d49.tar.bz2 forums-3257af80f0f510c11b4d7370bebf9c580a524d49.tar.xz forums-3257af80f0f510c11b4d7370bebf9c580a524d49.zip |
Update icon name
git-svn-id: file:///svn/phpbb/trunk@3771 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/includes/functions_posting.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php index 0955bf677d..cddd1a0dda 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_get('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, |