aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_admin.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2014-04-26 01:41:50 +0200
committerAndreas Fischer <bantu@phpbb.com>2014-04-26 01:41:50 +0200
commit9eedd45aac7670c1fdd4076755b1f807d2587d3d (patch)
tree0f2381af63c13d841ca27016bde685da30e6ba7d /phpBB/includes/functions_admin.php
parent0553d7980853c49e5421c350557e3961d6e9b2bc (diff)
parentaf827bf2b4d35c7a55ee5888448376555ed7929c (diff)
downloadforums-9eedd45aac7670c1fdd4076755b1f807d2587d3d.tar
forums-9eedd45aac7670c1fdd4076755b1f807d2587d3d.tar.gz
forums-9eedd45aac7670c1fdd4076755b1f807d2587d3d.tar.bz2
forums-9eedd45aac7670c1fdd4076755b1f807d2587d3d.tar.xz
forums-9eedd45aac7670c1fdd4076755b1f807d2587d3d.zip
Merge pull request #2345 from Nicofuma/ticket/12199
[ticket/12199] Move deprecated functions to functions_compatibility.php * Nicofuma/ticket/12199: [ticket/12199] Move deprecated functions to functions_compatibility.php
Diffstat (limited to 'phpBB/includes/functions_admin.php')
-rw-r--r--phpBB/includes/functions_admin.php28
1 files changed, 0 insertions, 28 deletions
diff --git a/phpBB/includes/functions_admin.php b/phpBB/includes/functions_admin.php
index d72f89b6ac..a343da7a7c 100644
--- a/phpBB/includes/functions_admin.php
+++ b/phpBB/includes/functions_admin.php
@@ -2581,20 +2581,6 @@ function phpbb_cache_moderators($db, $cache, $auth)
}
/**
-* Cache moderators. Called whenever permissions are changed
-* via admin_permissions. Changes of usernames and group names
-* must be carried through for the moderators table.
-*
-* @deprecated 3.1
-* @return null
-*/
-function cache_moderators()
-{
- global $db, $cache, $auth;
- return phpbb_cache_moderators($db, $cache, $auth);
-}
-
-/**
* View log
*
* @param string $mode The mode defines which log_type is used and from which log the entry is retrieved
@@ -2744,20 +2730,6 @@ function phpbb_update_foes($db, $auth, $group_id = false, $user_id = false)
}
/**
-* Removes moderators and administrators from foe lists.
-*
-* @deprecated 3.1
-* @param array|bool $group_id If an array, remove all members of this group from foe lists, or false to ignore
-* @param array|bool $user_id If an array, remove this user from foe lists, or false to ignore
-* @return null
-*/
-function update_foes($group_id = false, $user_id = false)
-{
- global $db, $auth;
- return phpbb_update_foes($db, $auth, $group_id, $user_id);
-}
-
-/**
* Lists inactive users
*/
function view_inactive_users(&$users, &$user_count, $limit = 0, $offset = 0, $limit_days = 0, $sort_by = 'user_inactive_time DESC')