aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_compatibility.php
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/16167] Deprecate phpbb_email_hash() and remove gen_email_hash()Marc Alexander2019-11-191-0/+14
| | | | | | The latter one has been deprecated for 10 years now. PHPBB3-16167
* [ticket/16189] Make wrappers call native functionsrubencm2019-11-011-114/+2
| | | | PHPBB3-16189
* [ticket/16189] Update versionrubencm2019-11-011-2/+2
| | | | PHPBB3-16189
* [ticket/16189] Deprecate inet_ntop and inet_pton wrappersrubencm2019-11-011-0/+148
| | | | PHPBB3-16189
* [ticket/16190] Deprecate phpbb's checkdnsrr wrapperrubencm2019-10-311-0/+22
| | | | PHPBB3-16190
* [ticket/14584] Change all to be removed tags to 4.0Máté Bartus2019-05-061-19/+19
| | | | PHPBB3-14584
* [ticket/14548] Move deprecated globals and functionsMáté Bartus2019-05-061-0/+90
| | | | PHPBB3-14584
* [ticket/15910] Pass object arguments by reference implicitlykasimi2018-12-121-1/+1
| | | | PHPBB3-15910
* [ticket/15350] Changes outdated wiki-link to new docs/Crizzo2017-09-071-1/+1
| | | | PHPBB3-15350
* Merge branch '3.1.x'Marc Alexander2015-06-161-2/+3
|\ | | | | | | | | Conflicts: phpBB/phpbb/user_loader.php
| * [ticket/13882] Lazy load the notification avatars.Callum Macrae2015-05-281-2/+3
| | | | | | | | | | | | | | This moves them further down the waterfall, making the page load quicker. PHPBB3-13882
* | [ticket/13614] Added phpbb_pcre_utf8_support() dummy for BCJoshyPHP2015-05-111-0/+9
| | | | | | | | PHPBB3-13614
* | [ticket/13762] Moving language related functionality into a separate classMateBartus2015-05-021-0/+19
| | | | | | | | PHPBB3-13762
* | [ticket/13697] Moving filesystem related functions to filesystem serviceMateBartus2015-04-161-1/+86
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Moving filesystem service to \phpbb\filesystem namespace * Wraping Symfony's Filesystem component * Moving filesystem related functions from includes/functions.php into \phpbb\filesystem\filesystem Functions moved (and deprecated): - phpbb_chmod - phpbb_is_writable - phpbb_is_absolute - phpbb_own_realpath - phpbb_realpath * Adding interface for filesystem service PHPBB3-13697
* | [ticket/13497] Update calls to `get_tables()`Gaëtan Muller2015-02-111-0/+13
| | | | | | | | PHPBB3-13497
* | [ticket/13455] Update calls to `request_var()`Gaëtan Muller2015-02-031-0/+60
| | | | | | | | PHPBB3-13455
* | [ticket/13496] Update calls to `set_config_count()`Gaëtan Muller2015-02-021-0/+27
| | | | | | | | PHPBB3-13496
* | [ticket/13494] Update calls to `set_config()`Gaëtan Muller2015-02-021-0/+33
| | | | | | | | PHPBB3-13494
* | [ticket/13468] Update calls to `add_log()`Gaëtan Muller2015-01-271-4/+50
| | | | | | | | PHPBB3-13468
* | [ticket/13499] Move `get_remote_file()` to `functions_compatibility.php`Gaëtan Muller2015-01-151-0/+20
| | | | | | | | PHPBB3-13499
* | [ticket/13450] Type-hint return value of $phpbb_container->get()Gaëtan Muller2015-01-121-0/+3
|/ | | | PHPBB3-13450
* [ticket/13230] Add missing globals and missing request object for path helperJoas Schilling2014-10-271-2/+5
| | | | PHPBB3-13230
* Merge pull request #2888 from Nicofuma/ticket/12993Joas Schilling2014-10-011-0/+27
|\ | | | | | | [ticket/12993] Improve get_user_ranks
| * [ticket/12993] Update doc blockTristan Darricau2014-09-241-1/+1
| | | | | | | | PHPBB3-12993
| * [ticket/12993] Return an array instead of reference passingTristan Darricau2014-08-191-1/+4
| | | | | | | | PHPBB3-12993
| * [ticket/12993] Fix includes of functions_displayTristan Darricau2014-08-191-0/+6
| | | | | | | | PHPBB3-12993
| * [ticket/12993] Rename to phpbb_get_user_rankTristan Darricau2014-08-181-0/+18
| | | | | | | | PHPBB3-12993
* | [ticket/12858] Directly return and use timezone selectsMarc Alexander2014-09-171-2/+1
| | | | | | | | PHPBB3-12858
* | [ticket/12858] Generate timezone selects with template loopMarc Alexander2014-09-171-2/+2
|/ | | | PHPBB3-12858
* [ticket/12594] Remove @package tags and update file headersYuriy Rusko2014-05-271-3/+7
| | | | PHPBB3-12594
* [ticket/12199] Move deprecated functions to functions_compatibility.phpNicofuma2014-04-261-0/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* [ticket/9758] Removed useless if-conditions to include functions.phpCrizzo2014-03-281-7/+0
| | | | PHPBB3-9758
* [ticket/9758] Adds global template variable CURRENT_USER_AVATARCrizzo2014-03-281-1/+1
| | | | PHPBB3-9758
* [ticket/12250] Remove deprecated phpbb_clean_path functionVarun Agrawal2014-03-071-0/+40
| | | | | | | | The function phpbb_clean_path() in functions.php is deprecated and is replaced by filesystem class. Therefore, this function is moved to the functions_compatibility file. PHPBB3-12250
* [ticket/12239] Move deprecated passwords functions to compatibility fileMarc Alexander2014-03-061-0/+35
| | | | | | | | The deprecated passwords functions are no longer used in the core and have been replaced with the passwords manager. Therefore, the functions are moved to the functions_compatibility file. PHPBB3-12239
* [feature/avatars] Use deprecated for compatibility functionMarc Alexander2013-02-031-4/+5
| | | | | | | Also moved use of global variables inside the only if statement they are used in. PHPBB3-10018
* [feature/avatars] Correct license, copyright and package infoMarc Alexander2013-02-031-1/+1
| | | | PHPBB3-10018
* [feature/avatars] Add include of functions_display.php in BC functionMarc Alexander2013-01-241-1/+8
| | | | | | | | The needed function phpbb_get_avatar() is defined in includes/functions_display.php. Include that file in the backwards compatible function get_user_avatar(). PHPBB3-10018
* [feature/avatars] Add note about when compatibility function was addedMarc Alexander2013-01-221-1/+2
| | | | PHPBB3-10018
* [feature/avatars] Add compatibility function for get_user_avatar()Marc Alexander2013-01-221-0/+41
PHPBB3-10018