diff options
| author | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-10-30 01:00:31 +0000 |
|---|---|---|
| committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-10-30 01:00:31 +0000 |
| commit | 18f9fa60a7ffb8a2cc9f08ba475842988b456b24 (patch) | |
| tree | 035a1b8e0ca1f0904d9c5d47512835d88eec05b4 | |
| parent | 691f50ada9386a63c53a473a44b835a8b1ca5978 (diff) | |
| download | forums-18f9fa60a7ffb8a2cc9f08ba475842988b456b24.tar forums-18f9fa60a7ffb8a2cc9f08ba475842988b456b24.tar.gz forums-18f9fa60a7ffb8a2cc9f08ba475842988b456b24.tar.bz2 forums-18f9fa60a7ffb8a2cc9f08ba475842988b456b24.tar.xz forums-18f9fa60a7ffb8a2cc9f08ba475842988b456b24.zip | |
acl_get not get_acl
git-svn-id: file:///svn/phpbb/trunk@2984 89ea8834-ac86-4346-8a33-228a782c2dd0
| -rw-r--r-- | phpBB/posting.php | 2 |
1 files changed, 1 insertions, 1 deletions
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, |
