aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
authorNicofuma <github@nicofuma.fr>2014-04-23 00:58:08 +0200
committerNicofuma <github@nicofuma.fr>2014-04-26 01:25:51 +0200
commitaf827bf2b4d35c7a55ee5888448376555ed7929c (patch)
tree9b4234f869f51d344e4bbc3e53804bf3e4e81af6 /phpBB/includes/functions.php
parentfe768d460d54d68aeecc392a75a1438b3f3bad34 (diff)
downloadforums-af827bf2b4d35c7a55ee5888448376555ed7929c.tar
forums-af827bf2b4d35c7a55ee5888448376555ed7929c.tar.gz
forums-af827bf2b4d35c7a55ee5888448376555ed7929c.tar.bz2
forums-af827bf2b4d35c7a55ee5888448376555ed7929c.tar.xz
forums-af827bf2b4d35c7a55ee5888448376555ed7929c.zip
[ticket/12199] Move deprecated functions to functions_compatibility.php
Currently 13 functions are marked as deprecated: functions.php: function set_var() function request_var() function set_config() function set_config_count() function tz_select() function add_log() functions_admin: function cache_moderators() function update_foes() functions_compatibility: function get_user_avatar() function phpbb_hash() function phpbb_check_hash() function phpbb_clean_path() functions_install: function get_tables() 8 of them are still used in the core: add_log Used in many places (~198 calls) get_tables Used in install\install_convert::get_convert_settings and functions_install.php\connect_check_db get_user_avatar Used in phpbb\user_loader:get_avatar phpbb_hash Used in phpbb\db\migration\data\v30x\release_3_0_5_rc1 request_var Used quite everywhere (~997 calls) set_config Used in many places (~129 calls) set_config_count Used in a few places (~37 calls) set_var Used by phpbb_http_login and phpbb\auth\provider\apache::autologin PHPBB3-12199
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r--phpBB/includes/functions.php18
1 files changed, 0 insertions, 18 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index 0cb88cd8ee..0d14f5ae67 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -1005,24 +1005,6 @@ function phpbb_get_timezone_identifiers($selected_timezone)
}
/**
-* Pick a timezone
-*
-* @param string $default A timezone to select
-* @param boolean $truncate Shall we truncate the options text
-*
-* @return string Returns the options for timezone selector only
-*
-* @deprecated
-*/
-function tz_select($default = '', $truncate = false)
-{
- global $user;
-
- $timezone_select = phpbb_timezone_select($user, $default, $truncate);
- return $timezone_select['tz_select'];
-}
-
-/**
* Options to pick a timezone and date/time
*
* @param \phpbb\user $user Object of the current user