aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/mcp/mcp_queue.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2005-05-15 20:17:35 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2005-05-15 20:17:35 +0000
commit918914926b13253ef3a9af40bcdb0ea8b900f497 (patch)
tree2d1e0313e99f45e82a2f5081dfb450de352dad28 /phpBB/includes/mcp/mcp_queue.php
parent4c207e5510a77931d3eed6fc065f294c8f675f82 (diff)
downloadforums-918914926b13253ef3a9af40bcdb0ea8b900f497.tar
forums-918914926b13253ef3a9af40bcdb0ea8b900f497.tar.gz
forums-918914926b13253ef3a9af40bcdb0ea8b900f497.tar.bz2
forums-918914926b13253ef3a9af40bcdb0ea8b900f497.tar.xz
forums-918914926b13253ef3a9af40bcdb0ea8b900f497.zip
- request_var updates
- added group selection to pm filter - fixed activation/deletion of inactive user accounts in admin index - fixed some color swatch bugs git-svn-id: file:///svn/phpbb/trunk@5152 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/mcp/mcp_queue.php')
-rw-r--r--phpBB/includes/mcp/mcp_queue.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/mcp/mcp_queue.php b/phpBB/includes/mcp/mcp_queue.php
index c62e29ee38..1f50e3456b 100644
--- a/phpBB/includes/mcp/mcp_queue.php
+++ b/phpBB/includes/mcp/mcp_queue.php
@@ -31,9 +31,9 @@ class mcp_queue extends module
include_once($phpbb_root_path . 'includes/functions_messenger.'.$phpEx);
include_once($phpbb_root_path . 'includes/functions_posting.' . $phpEx);
- $post_id_list = get_array('post_id_list', 0);
+ $post_id_list = request_var('post_id_list', array(0));
- if (!$post_id_list)
+ if (!sizeof($post_id_list))
{
trigger_error('NO_POST_SELECTED');
}