aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #3924 from Senky/ticket/14190Oliver Schramm2016-01-081-0/+43
|\ | | | | | | [ticket/14190] Add core.ucp_prefs_view_after event
| * [ticket/14190] Add core.ucp_prefs_view_after eventJakub Senko2015-10-121-0/+43
| | | | | | | | PHPBB3-14190
* | Merge pull request #4109 from marc1706/ticket/14343Marc Alexander2016-01-061-1/+1
|\ \ | | | | | | | | | [ticket/14343] Added missing $phpbb_dispatcher
| * | [ticket/14343] Added missing $phpbb_dispatcherkasimi2016-01-061-1/+1
| | | | | | | | | | | | PHPBB3-14343
* | | Merge pull request #4105 from marc1706/ticket/14387Marc Alexander2016-01-062-4/+2
|\ \ \ | | | | | | | | | | | | [ticket/14387] Allow extending avatars by extensions in ACP
| * | | [ticket/14387] Extend avatar-driver by extension in ACP not possiblejaviexin2016-01-022-4/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Create two driver methods to provide the driver config name and the driver ACP template name, and use them directly when required. Default driver config name and template name are the same as now. But new drivers are able to override the config name and template name with their own, including @vendor_extension. Simplified manager interface by reducing unneeded methods. PHPBB3-14387
| * | | [ticket/14387] Extend avatar-driver by extension in ACP not possiblejaviexin2016-01-022-4/+4
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | Create two driver methods to provide the driver config name and the driver ACP template name, and use them within the manager method. Default driver config name and template name are the same as now. But new drivers are able to override the config name and template name with their own, including @vendor_extension. PHPBB3-14387
* | | [ticket/14386] Use of sys_get_temp_dir()Erwan Nader2016-01-031-1/+1
|/ / | | | | | | PHPBB3-14386
* | [3.1.x] Update version to 3.1.8-devJoas Schilling2015-12-121-1/+1
| |
* | [prep-release-3.1.7] Update version to 3.1.7-RC1Joas Schilling2015-12-121-1/+1
| |
* | Merge pull request #4071 from marc1706/ticket/14213Tristan Darricau2015-12-081-1/+21
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/14213] Adding event after users have been added to a group * marc1706/ticket/14213: [ticket/14213] Add pending to core.group_add_user_after [ticket/14213] Mv event group_add_user_after after cache cleaning [ticket/14213] Fix version number [ticket/14213] Adding missing reference to event dispatcher [ticket/14213] Adding event after users have been added to a group
| * | [ticket/14213] Add pending to core.group_add_user_afterMarc Alexander2015-12-081-1/+8
| | | | | | | | | | | | PHPBB3-14213
| * | [ticket/14213] Mv event group_add_user_after after cache cleaningWardormeur2015-12-071-12/+13
| | | | | | | | | | | | | | | | | | In order to match with the rest of the event and to have appropriate info state PHPBB3-14213
| * | [ticket/14213] Fix version numberWardormeur2015-12-071-1/+1
| | | | | | | | | | | | | | | | | | for core.group_add_user_after event PHPBB3-14213
| * | [ticket/14213] Adding missing reference to event dispatcherWardormeur2015-12-071-2/+2
| | | | | | | | | | | | | | | | | | Required to dispatch event, wasn't included into global PHPBB3-14213
| * | [ticket/14213] Adding event after users have been added to a groupWardormeur2015-12-071-0/+12
| | | | | | | | | | | | | | | | | | Allow mapping with others CMS by exposing user configuration & changes PHPBB3-14213
* | | Merge pull request #4008 from Zoddo/ticket/14261Tristan Darricau2015-12-072-0/+4
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | [ticket/14261] Move the update of session informations to page_footer() * Zoddo/ticket/14261: [ticket/14261] Fix tests by removing old code. [ticket/14261] Move the update of session informations to page_footer()
| * | [ticket/14261] Move the update of session informations to page_footer()Zoddo2015-10-272-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently, the unique way to disable the update of session_page is to pass "false" to the parameter of session_begin(). This method is directly called in app.php, so pages served from the routing system can't disable the update of session informations. By moving the update to page_footer, we can allow controllers to tell to the session manager that we don't want to update the session infos. PHPBB3-14261
* | | [ticket/14343] Add event when locking/unlocking posts/topicskasimi2015-12-061-0/+16
| | | | | | | | | | | | PHPBB3-14343
* | | Merge pull request #3910 from kinerity/ticket/14170Marc Alexander2015-11-121-10/+11
|\ \ \ | | | | | | | | | | | | [ticket/14170] Fix mcp_change_poster_after event
| * | | [ticket/14170] Revert mcp_change_poster_after @since changeKailey Truscott2015-10-131-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Revert the @since change back to 3.1.6-RC1. Add @changed line 3.1.7-RC1 and description. PHPBB3-14170
| * | | [ticket/14170] Fix mcp_change_poster_after eventKailey Truscott2015-09-161-11/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Move the mcp_change_poster_after event to before renewing $post_info. I changed the "since" version as this would be fixed in 3.1.7-RC1. PHPBB3-14170
* | | | [ticket/14276] Adjust function get_folder_statusRichard McGirr2015-11-071-1/+1
| | | | | | | | | | | | | | | | PHPBB3-14276
* | | | Merge pull request #3975 from prototech/ticket/11971Oliver Schramm2015-11-061-12/+53
|\ \ \ \ | | | | | | | | | | | | | | | [ticket/11971] Validate "Spambot countermeasures" settings before saving
| * | | | [ticket/11971] Validate "Spambot countermeasures" settings before saving.Cesar G2015-10-141-12/+53
| | | | | | | | | | | | | | | | | | | | PHPBB3-11971
* | | | | Merge pull request #3983 from prototech/ticket/13831Andreas Fischer2015-11-021-2/+3
|\ \ \ \ \ | |_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | [ticket/13831] Store provided reason when deleting from Mod. Queue module. * prototech/ticket/13831: [ticket/13831] Store provided reason when deleting from Mod. Queue module.
| * | | | [ticket/13831] Store provided reason when deleting from Mod. Queue module.Cesar G2015-10-141-2/+3
| | | | | | | | | | | | | | | | | | | | PHPBB3-13831
* | | | | [ticket/14249] Fix online list orderOliver Schramm2015-10-211-1/+1
| | | | | | | | | | | | | | | | | | | | PHPBB3-14249
* | | | | Merge pull request #3666 from marc1706/ticket/9252Tristan Darricau2015-10-191-0/+11
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/9252] Do not try to disapprove a post that was just approved * marc1706/ticket/9252: [ticket/9252] Do not try to disapprove a post that was just approved
| * | | | | [ticket/9252] Do not try to disapprove a post that was just approvedMarc Alexander2015-05-301-0/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Without this change, posts that are approved by someone right before another moderator is trying to disapprove a post are actually deleted instead of disapproved. PHPBB3-9252
* | | | | | [ticket/13945] Send reactivation requests to admins using notifications system.Cesar G2015-10-151-31/+6
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-13945
* | | | | | [ticket/12616] Remove report notifications when post is deleted/disapproved.Cesar G2015-10-141-0/+1
| |/ / / / |/| | | | | | | | | | | | | | PHPBB3-12616
* | | | | Merge pull request #3900 from Zoddo/ticket/14159Tristan Darricau2015-10-141-10/+19
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/14159] Hide version info on ACP if we don't have the permission * Zoddo/ticket/14159: [ticket/14159] Hide version info on ACP if we don't have the permission
| * | | | | [ticket/14159] Hide version info on ACP if we don't have the permissionZoddo2015-09-121-10/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This also hide a link to an unreachable module (Check phpBB version). We could have simply remove the link to the module, but if the user hasn't the permission to access to the phpBB version check module, I think that he shouldn't view any version information about phpBB. PHPBB3-14159
* | | | | | [ticket/9153] Allow users without u_sendpm permission to delete existing PM's.Cesar G2015-10-141-1/+1
| |_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The u_sendpm check in ucp_pm.php is merely for the purpose of displaying the error message within the UCP template. Otherwise it could be removed as compose_pm() will check the appropriate permission pertaining to the attempted action. PHPBB3-9153
* | | | | [ticket/10572] Unguarded includes in acp filesRichard McGirr2015-10-1315-36/+132
| | | | | | | | | | | | | | | | | | | | PHPBB3-10572
* | | | | Merge pull request #3922 from Senky/ticket/14188Tristan Darricau2015-10-121-1/+17
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/14188] Add core.acp_styles_action_before event * Senky/ticket/14188: [ticket/14188] Add core.acp_styles_action_before event
| * | | | | [ticket/14188] Add core.acp_styles_action_before eventJakub Senko2015-09-231-1/+17
| | |_|/ / | |/| | | | | | | | | | | | | PHPBB3-14188
* | | | | Merge pull request #3944 from Wardormeur/ticket/14212Tristan Darricau2015-10-121-0/+13
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/14212] Adding event after users have been removed to a group * Wardormeur/ticket/14212: [ticket/14212] Fix version number [ticket/14212] Adding event after users have been removed to a group
| * | | | | [ticket/14212] Fix version numberWardormeur2015-10-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | for core.group_delete_user_after event PHPBB-14212
| * | | | | [ticket/14212] Adding event after users have been removed to a groupWardormeur2015-10-041-0/+13
| | |_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The idea is to be able to map with others CMS by exposing most commons user configuration & changes. Difference between the event before and after group belonging removal is that users belongs to multiple groups, so that the belonging into a group also depends on the others groups (and not only the deleted one), which is not reflected before as the user is not yet deleted PHPBB-14212
* | | | | Merge pull request #3946 from RMcGirr83/ticket_13591Tristan Darricau2015-10-121-7/+12
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/13591] Change SQL query into array to allow * RMcGirr83/ticket_13591: [ticket/13591] Change SQL query into array to allow
| * | | | | [ticket/13591] Change SQL query into array to allowRMcGirr832015-10-081-7/+12
| | |_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | extension authors to modify SQL query PHPBB3-13591
* | | | | Merge pull request #3957 from Zoddo/ticket/14200Tristan Darricau2015-10-121-1/+1
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/14200] Allow hidden users to see himself on viewonline * Zoddo/ticket/14200: [ticket/14200] Allow hidden users to see himself on viewonline
| * | | | | [ticket/14200] Allow hidden users to see himself on viewonlineZoddo2015-10-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-14200
* | | | | | Merge pull request #3864 from Zoddo/ticket/8920Marc Alexander2015-10-112-4/+4
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | | | | | | [ticket/8920] Add a MCP PM reports view permission
| * | | | | [ticket/8920] Add a MCP PM reports view permissionZoddo2015-08-302-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Anybody who has the permission to read reports in one forum can read PM reports. Solving this problem by adding a new permission to read PM reports. PHPBB3-8920
* | | | | | Merge pull request #3934 from Zoddo/ticket/14181Marc Alexander2015-10-091-1/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | [ticket/14181] Fix empty denial reason if the reason isn't translated
| * | | | | | [ticket/14181] Fix empty denial reason if the reason isn't translatedHB2015-09-271-1/+1
| | |_|/ / / | |/| | | | | | | | | | | | | | | | PHPBB3-14181
* | | | | | [ticket/14073] Fix trailing whitespacesrxu2015-10-081-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-14073