From 18f9fa60a7ffb8a2cc9f08ba475842988b456b24 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Wed, 30 Oct 2002 01:00:31 +0000 Subject: [PATCH] acl_get not get_acl git-svn-id: file:///svn/phpbb/trunk@2984 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/posting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/posting.php b/phpBB/posting.php index 3e187d16fa..dbd81df4c3 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -680,7 +680,7 @@ $template->assign_vars(array( ); // Poll entry -if ((($mode == 'post' || ($mode == 'edit' && $post_id == $topic_first_post_id && empty($poll_last_vote))) && $auth->acl_get('f_poll', $forum_id)) || $auth->get_acl('a_')) +if ((($mode == 'post' || ($mode == 'edit' && $post_id == $topic_first_post_id && empty($poll_last_vote))) && $auth->acl_get('f_poll', $forum_id)) || $auth->acl_get('a_')) { $template->assign_vars(array( 'S_SHOW_POLL_BOX' => true,