aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
Commit message (Collapse)AuthorAgeFilesLines
* Merge remote-tracking branch 'EXreaction/ticket/11394' into developDavid King2013-03-043-8/+8
|\ | | | | | | | | | | | | # By Nathaniel Guse # Via Nathaniel Guse * EXreaction/ticket/11394: [ticket/11394] Relax Migration Tools
| * [ticket/11394] Relax Migration ToolsNathaniel Guse2013-03-043-8/+8
| | | | | | | | | | | | | | Do not throw as many exceptions in the migration tools (when something unexpected occurs but can be safely ignored). PHPBB3-11394
* | Merge remote-tracking branch 'EXreaction/ticket/11393' into developDavid King2013-03-041-1/+8
|\ \ | | | | | | | | | | | | | | | | | | # By Nathaniel Guse # Via Nathaniel Guse * EXreaction/ticket/11393: [ticket/11393] Give more information on database updater
| * | [ticket/11393] Give more information on database updaterNathaniel Guse2013-03-031-1/+8
| |/ | | | | | | PHPBB3-11393
* | Merge remote-tracking branch 'EXreaction/ticket/11395' into developDavid King2013-03-041-2/+2
|\ \ | | | | | | | | | | | | | | | | | | # By Nathaniel Guse # Via Nathaniel Guse * EXreaction/ticket/11395: [ticket/11395] Prevent acp_modules::get_modules_info from reincluding files
| * | [ticket/11395] Prevent acp_modules::get_modules_info from reincluding filesNathaniel Guse2013-03-031-2/+2
| |/ | | | | | | PHPBB3-11395
* | Merge remote-tracking branch 'remotes/marc/feature/avatars' into developNathaniel Guse2013-03-0420-813/+1799
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # By Marc Alexander (100) and others # Via Marc Alexander (8) and Igor Wiedler (3) * remotes/marc/feature/avatars: (138 commits) [feature/avatars] Update module_auth of ucp module and fix small issues [feature/avatars] Add migrations data file for avatars [feature/avatars] Reduce module auth of ucp avatar settings [feature/avatars] Auto-clear avatar dimensions when first changing avatars [feature/avatars] Use "Main" as category for avatars in root of gallery [feature/avatars] Remove trailing whitespace from avatar code [feature/avatars] Pass phpbb_user to prepare and process form functions [feature/avatars] Document the use of the allowed extensions array [feature/avatars] Use array for allowed extensions and implode if needed [feature/avatars] Use deprecated for compatibility function [feature/avatars] Correct license, copyright and package info [feature/avatars] Move list of supported formats to avatar driver class [feature/avatars] Add include of functions_display.php in BC function [feature/avatars] Add note about when compatibility function was added [feature/avatars] Add compatibility function for get_user_avatar() [feature/avatars] Move definition of driver_collection to avatars.yml [feature/avatars] Remove the obsolete request argument for avatar drivers [feature/avatars] Add missing @var to docblocks in avatar manager [feature/avatars] Remove not needed inline style [feature/avatars] Differentiate tests for get drivers functions ...
| * | [feature/avatars] Update module_auth of ucp module and fix small issuesMarc Alexander2013-03-041-9/+12
| | | | | | | | | | | | | | | | | | | | | | | | Reduced the check effectively_installed() to just checking for the config entry "allow_avatar_gravatar". Also added the missing update of the module_auth of the ucp_profile avatar mode. PHPBB3-10018
| * | [feature/avatars] Add migrations data file for avatarsMarc Alexander2013-03-041-0/+64
| | | | | | | | | | | | | | | | | | | | | The module_auth of the ucp avatar settings are used for checking if the migration has already been installed. PHPBB3-10018
| * | [feature/avatars] Reduce module auth of ucp avatar settingsMarc Alexander2013-03-041-1/+1
| | | | | | | | | | | | | | | | | | | | | Previously the avatar types that need to be enabled were hardcoded into the module auth. This is no longer needed in the new avatar system. PHPBB3-10018
| * | Merge branch 'develop' of https://github.com/phpbb/phpbb3 into feature/avatarsMarc Alexander2013-03-04102-658/+9362
| |\ \ | | |/ | | | | | | | | | Conflicts: phpBB/install/database_update.php
| * | [feature/avatars] Use "Main" as category for avatars in root of galleryMarc Alexander2013-02-191-6/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | Before this change the whole avatar gallery path would show as category. Additionally, the avatars that were selected like that had an incorrect path and didn't show up correctly. With this patch it'll display "Main" as category and properly work. PHPBBB3-10018
| * | [feature/avatars] Remove trailing whitespace from avatar codeMarc Alexander2013-02-196-17/+16
| | | | | | | | | | | | PHPBB3-10018
| * | [feature/avatars] Pass phpbb_user to prepare and process form functionsMarc Alexander2013-02-199-18/+20
| | | | | | | | | | | | | | | | | | | | | The phpbb_user object might be used for language variables and other things. PHPBB3-10018
| * | [feature/avatars] Document the use of the allowed extensions arrayMarc Alexander2013-02-131-1/+6
| | | | | | | | | | | | PHPBB3-10018
| * | [feature/avatars] Use array for allowed extensions and implode if neededMarc Alexander2013-02-074-4/+9
| | | | | | | | | | | | PHPBB3-10018
| * | Merge branch 'develop' of https://github.com/phpbb/phpbb3 into feature/avatarsMarc Alexander2013-02-0718-51/+2431
| |\ \ | | | | | | | | | | | | | | | | Conflicts: phpBB/config/services.yml
| * | | [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-038-22/+22
| | | | | | | | | | | | | | | | PHPBB3-10018
| * | | [feature/avatars] Move list of supported formats to avatar driver classMarc Alexander2013-01-254-3/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Using the regex and turning it into an array if necessary seemed like the cleanest approach to achieve this. 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
| * | | [feature/avatars] Add missing @var to docblocks in avatar managerMarc Alexander2013-01-091-0/+4
| | | | | | | | | | | | | | | | PHPBB3-10018
| * | | [feature/avatars] Strictly check if avatar list is empty and cache resultMarc Alexander2013-01-081-2/+3
| | | | | | | | | | | | | | | | PHPBB3-10018
| * | | [feature/avatars] Pass phpbb_user object to prepare_form_acp()Marc Alexander2013-01-085-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The phpbb_user object might be used for language variables. Pass it as a function argument to prepare_form_acp() instead of using globals. PHPBB3-10018
| * | | [feature/avatars] Pass phpbb_user object to get_custom_html()Marc Alexander2013-01-084-4/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Pass the phpbb_user object to function get_custom_html(). This object is used in that method. Also fixed incorrect arguments to get_custom_html() in phpbb_get_avatar(). PHPBB3-10018
| * | | [feature/avatars] Remove $request property and pass as argument if neededMarc Alexander2013-01-0710-41/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove the $request property from the phpbb_avatar_driver class and rather pass it as function argument if it's needed in a function. Currently this is only the case for the class methods prepare_form() and process_form(). PHPBB3-10018
| * | | [feature/avatars] Use empty() instead of sizeof()Marc Alexander2013-01-072-2/+2
| | | | | | | | | | | | | | | | PHPBB3-10018
| * | | [feature/avatars] Add function for localizing errorsMarc Alexander2013-01-065-58/+35
| | | | | | | | | | | | | | | | PHPBB3-10018
| * | | [feature/avatars] Add missing docblocks to avatar managerMarc Alexander2013-01-051-0/+16
| | | | | | | | | | | | | | | | PHPBB3-10018
| * | | [feature/avatars] Improve handling of incorrect input for avatarsMarc Alexander2013-01-042-1/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The upload avatar driver will now inform the user if insufficient data has been entered for both remote and local avatar uploads. The local avatar driver (gallery avatar) will also inform the user if he didn't select a category and/or file before submitting. PHPBB3-10018
| * | | [feature/avatars] Add phpbb prefix to new functionsMarc Alexander2013-01-048-18/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Although get_user_avatar() is not new, the phpbb prefix was prepended. This is due to the fact that it was entirely rewritten and is therefore more or less a completely new function. PHPBB3-10018
| * | | Merge branch 'develop' of https://github.com/phpbb/phpbb3 into feature/avatarsMarc Alexander2013-01-0429-193/+431
| |\ \ \ | | | | | | | | | | | | | | | | | | | | Conflicts: phpBB/includes/ucp/ucp_groups.php
| * | | | [feature/avatars] Let the server handle http or https for gravatarsMarc Alexander2012-12-271-1/+1
| | | | | | | | | | | | | | | | | | | | PHPBB3-10018
| * | | | [feature/avatars] Add missing explanation to docblock of get_all_drivers()Marc Alexander2012-12-271-0/+4
| | | | | | | | | | | | | | | | | | | | PHPBB3-10018
| * | | | [feature/avatars] Some more miscellaneous changesMarc Alexander2012-12-277-28/+28
| | | | | | | | | | | | | | | | | | | | PHPBB3-10018
| * | | | Merge branch 'develop' of github.com:marc1706/phpbb3 into feature/avatarsMarc Alexander2012-12-2449-1895/+2395
| |\ \ \ \
| * | | | | [feature/avatars] Use callback method in avatar manager's clean rowMarc Alexander2012-12-171-7/+12
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10018
| * | | | | [feature/avatars] Add more consistency to codebaseMarc Alexander2012-12-115-17/+27
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10018
| * | | | | Merge branch 'develop' into feature/avatarsMarc Alexander2012-12-0962-312/+1727
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: phpBB/install/database_update.php
| * | | | | | [feature/avatars] Fix behavior of avatar manager and variablesMarc Alexander2012-12-043-16/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The $force_all variable was only partially removed and the behavior was not consistent in all files. PHPBB3-10018
| * | | | | | [feature/avatars] Use seperate function for retrieving the config nameMarc Alexander2012-12-042-4/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10018
| * | | | | | [feature/avatars] Use seperate function for retrieving all driversMarc Alexander2012-12-042-4/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10018
| * | | | | | [feature/avatars] Minor variable naming fixesMarc Alexander2012-12-044-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10018
| * | | | | | [feature/avatars] Removed unneeded dependenciesMarc Alexander2012-12-011-9/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10018
| * | | | | | [feature/avatars] Fix docblocks and minor cosmetic issuesMarc Alexander2012-12-016-22/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10018
| * | | | | | [feature/avatars] Create setting for enabling avatar in managerMarc Alexander2012-11-307-69/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10018
| * | | | | | [feature/avatars] Fix variable namesMarc Alexander2012-11-307-68/+62
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10018
| * | | | | | [feature/avatars] Let avatar manager handle $ignore_configMarc Alexander2012-11-308-69/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The avatar manager already handles if avatars are enabled. It should also handle ignoring the config settings. PHPBB3-10018