From ec959d00014ba92466b676e0a32d662e629825e5 Mon Sep 17 00:00:00 2001 From: Meik Sievertsen Date: Sun, 22 Jan 2006 13:06:13 +0000 Subject: - size select fix - introduced function for building group options (acp) - fixed acl_getf if negated option needs to be retrieved - only using one function for updating post informations - fixing module display if module is disabled - if user is having a non-existent style do not print out error message, instead fix the users value and load the default style git-svn-id: file:///svn/phpbb/trunk@5486 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/mcp/mcp_queue.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'phpBB/includes/mcp') diff --git a/phpBB/includes/mcp/mcp_queue.php b/phpBB/includes/mcp/mcp_queue.php index f188de4633..0825bc1da5 100644 --- a/phpBB/includes/mcp/mcp_queue.php +++ b/phpBB/includes/mcp/mcp_queue.php @@ -28,6 +28,8 @@ class mcp_queue global $auth, $db, $user, $template; global $config, $phpbb_root_path, $phpEx, $SID; + include_once($phpbb_root_path . 'includes/functions_posting.' . $phpEx); + $forum_id = request_var('f', 0); $start = request_var('start', 0); @@ -36,7 +38,6 @@ class mcp_queue case 'approve': case 'disapprove': include_once($phpbb_root_path . 'includes/functions_messenger.'.$phpEx); - include_once($phpbb_root_path . 'includes/functions_posting.' . $phpEx); $post_id_list = request_var('post_id_list', array(0)); @@ -59,7 +60,6 @@ class mcp_queue case 'approve_details': $user->add_lang('posting'); - include($phpbb_root_path . 'includes/functions_posting.' . $phpEx); $post_id = request_var('p', 0); $topic_id = request_var('t', 0); -- cgit v1.2.1