mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-11 05:48:51 +00:00
[feature/php-events] Remove core.mcp_check_ids and invalid comment.
We couldn't find a reason for this event, as it even doesn't have any arguments The comment is not correct anymore either. Since 3.1global announcements still have a valid forum_id PHPBB3-9550
This commit is contained in:
parent
e85afc6b83
commit
d06adb06e9
1 changed files with 1 additions and 5 deletions
|
@ -823,7 +823,7 @@ function mcp_sorting($mode, &$sort_days, &$sort_key, &$sort_dir, &$sort_by_sql,
|
||||||
*/
|
*/
|
||||||
function check_ids(&$ids, $table, $sql_id, $acl_list = false, $single_forum = false)
|
function check_ids(&$ids, $table, $sql_id, $acl_list = false, $single_forum = false)
|
||||||
{
|
{
|
||||||
global $db, $auth, $phpbb_dispatcher;
|
global $db, $auth;
|
||||||
|
|
||||||
if (!is_array($ids) || empty($ids))
|
if (!is_array($ids) || empty($ids))
|
||||||
{
|
{
|
||||||
|
@ -887,9 +887,5 @@ function check_ids(&$ids, $table, $sql_id, $acl_list = false, $single_forum = fa
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// If forum id is false and ids populated we may have only global announcements selected (returning 0 because of (int) $forum_id)
|
|
||||||
|
|
||||||
$phpbb_dispatcher->dispatch('core.mcp_check_ids');
|
|
||||||
|
|
||||||
return ($single_forum === false) ? true : (int) $forum_id;
|
return ($single_forum === false) ? true : (int) $forum_id;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue