aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | | | [prep-release-3.1.0-a2] Add changelog for alpha2Joas Schilling2013-11-191-0/+74
| | | | | | |
* | | | | | | [prep-release-3.1.0-a2] Prepare ChangelogJoas Schilling2013-11-191-22/+25
| | | | | | |
* | | | | | | [prep-release-3.1.0-a2] Add migration for 3.1.0-a2Joas Schilling2013-11-191-0/+28
| | | | | | |
* | | | | | | [prep-release-3.1.0-a2] Update version to 3.1.0-a2Joas Schilling2013-11-195-7/+7
| | | | | | |
* | | | | | | Merge remote-tracking branch 'Marc/ticket/11896' into developJoas Schilling2013-11-191-1/+2
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Marc/ticket/11896: [ticket/11896] Use $form_time and fix out of bounds $form_time [ticket/11896] Correctly document return of null in docblocks [ticket/11896] Minor code improvements in phpbb_functional_test_case [ticket/11896] Add functional tests for marking all notifications read [ticket/11896] Add ability to define expected message after posting [ŧicket/11896] Set form_time with time() when marking all notifications read
| * | | | | | | [ticket/11896] Use $form_time and fix out of bounds $form_timeMarc Alexander2013-11-141-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11896
| * | | | | | | [ŧicket/11896] Set form_time with time() when marking all notifications readMarc Alexander2013-11-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | form_time is only set if is passed via the form. Since the mark notifications read link does not use the form, it will default to 0 causing the mark notifications logic to only mark notifications read if their time is smaller or equal to 0. This patch will change ucp_notifications to correctly set form_time for the confirm_box. PHPBB3-11896
* | | | | | | | [ticket/12023] Correctly compare the size of the array in ignore_new_filesJoas Schilling2013-11-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12023
* | | | | | | | [ticket/12018] Use path_helper for admin style CSS in sql reportMarc Alexander2013-11-141-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The path to the admin style CSS is currently created with $phpbb_admin_path. We should however use the path_helper to correctly link to this file in order to have a correct link on pages like extensions PHPBB3-12018
* | | | | | | | [ticket/12008] Update the run time value for the prune notifications cron taskCesar G2013-11-142-1/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12008
* | | | | | | | [ticket/12008] The read_notification_last_gc config setting should be dynamic.Cesar G2013-11-142-1/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12008
* | | | | | | | Merge pull request #1815 from marc1706/ticket/11525Nils Adermann2013-11-136-26/+24
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | [ticket/11525] Only remove group or user prefix from given avatar data
| * | | | | | | | [ticket/11525] Use foreach instead of array_walk in method clean_row()Marc Alexander2013-11-131-23/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This approach is cleaner and probably even faster the previous ways that included using array_walk() or array_map() and other helper functions and methods. PHPBB3-11525
| * | | | | | | | [ticket/11525] Prefix id parameter with 'g' again when its a group avatarJoas Schilling2013-11-101-3/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11525
| * | | | | | | | [ticket/11525] Fix doc blocksJoas Schilling2013-11-101-4/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11525
| * | | | | | | | [ticket/11525] Only remove group or user prefix from given avatar dataMarc Alexander2013-10-246-12/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Until now, the user data had both user_id and group_id keys in the avatar data. As both group_ and user_ prefixes were removed the group_id was collapsed onto the user_id and therefore all users in the same group had the same prefix for their uploaded avatars. This patch will make sure that the correct id is used depending on whether it's a group's or user's avatar data. PHPBB3-11525
* | | | | | | | | Merge pull request #1871 from nickvergessen/ticket/12016Nils Adermann2013-11-132-13/+16
|\ \ \ \ \ \ \ \ \ | |_|_|_|_|/ / / / |/| | | | | | | | Ticket/12016 Event listeners should be services
| * | | | | | | | [ticket/12016] Use a service provider for event listenersJoas Schilling2013-11-132-13/+16
| | |_|_|_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows them to use dependency injection PHPBB3-12016
* | | | | | | | [ticket/11472] Expand palette cell links to the full block size.Cesar G2013-11-124-3/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11472
* | | | | | | | [ticket/11472] Use {T_ASSETS_PATH}.Cesar G2013-11-125-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11472
* | | | | | | | [ticket/11472] Update the ACP user signature page.Cesar G2013-11-122-34/+39
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11472
* | | | | | | | [ticket/11472] Make the color swatch configurable and fix it in subsilver2Cesar G2013-11-126-20/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11472
* | | | | | | | [ticket/11472] Make prosilver's editor.js an asset used by all styles.Cesar G2013-11-128-726/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11472
* | | | | | | | [ticket/11998] Make phpbbcli executable and add shebangNils Adermann2013-11-121-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11998
* | | | | | | | Merge pull request #1849 from bantu/ticket/11998Nils Adermann2013-11-1114-130/+455
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | [ticket/11998] Introduction of the phpBB Console
| * | | | | | | | [ticket/11998] Turn develop/extensions.php into console commands.Andreas Fischer2013-11-057-129/+249
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11998
| * | | | | | | | [ticket/11998] Add phpBB abstraction for application and command.Andreas Fischer2013-11-054-9/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11998
| * | | | | | | | [ticket/11998] Move application file to bin/phpbbcli.phpAndreas Fischer2013-11-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11998
| * | | | | | | | [ticket/11998] Add console command for recalculating email hash.Andreas Fischer2013-11-032-0/+79
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11998
| * | | | | | | | [ticket/11998] Also setup extension class loader.Andreas Fischer2013-11-031-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11998
| * | | | | | | | [ticket/11998] Use container to get all commands using 'console.command' tag.Andreas Fischer2013-11-032-2/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11998
| * | | | | | | | [ticket/11998] Basic console application script.Andreas Fischer2013-11-031-0/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11998
| * | | | | | | | [ticket/11998] Add symfony/console as dependency.Andreas Fischer2013-11-032-1/+55
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11998
* | | | | | | | | Merge pull request #1853 from nickvergessen/ticket/11927Nathan Guse2013-11-112-1/+49
|\ \ \ \ \ \ \ \ \ | |_|/ / / / / / / |/| | | | | | | | [ticket/11927] Correctly add new files on update
| * | | | | | | | [ticket/11927] Prefix function with phpbb_Joas Schilling2013-11-072-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11927
| * | | | | | | | [ticket/11927] Add doc block to new functionJoas Schilling2013-11-071-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11927
| * | | | | | | | [ticket/11927] Correctly add new files on updateJoas Schilling2013-11-072-1/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently we ignore language and style files when the directory where they go to do not exist. However in 3.1 we introduce some new sub directories: * language/en/email/short/ * styles/prosilver/theme/en/ So we need to change our check to look whether the language or style exist, rather then the parent directory. PHPBB3-11927
* | | | | | | | | Merge remote-tracking branch 'EXreaction/ticket/11943' into developJoas Schilling2013-11-112-9/+56
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * EXreaction/ticket/11943: [ticket/11943] New line at EOF for define_error.html [ticket/11943] Forgot template file for test [ticket/11943] Throw an exception if DEFINE is setup improperly [ticket/11943] Split fix_inline_variable_tokens into 3 steps [ticket/11943] Require stricter DEFINE statements for templates [ticket/11943] Do not quote the value when it is exactly true, false, or null [ticket/11943] Add test for DEFINE $VAR = false
| * | | | | | | | | [ticket/11943] Throw an exception if DEFINE is setup improperlyNathan Guse2013-11-091-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11943
| * | | | | | | | | [ticket/11943] Split fix_inline_variable_tokens into 3 stepsNathan Guse2013-11-081-10/+50
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | DEFINE shouldn't add/remove surrounding quotes, but must have the inline variable tokens fixed PHPBB3-11943
| * | | | | | | | | [ticket/11943] Require stricter DEFINE statements for templatesNathan Guse2013-11-081-9/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11943
| * | | | | | | | | [ticket/11943] Do not quote the value when it is exactly true, false, or nullNathan Guse2013-11-041-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Quoting these can change the meaning of the value (e.g. 'false' == true) PHPBB3-11943
* | | | | | | | | | Merge pull request #1862 from nickvergessen/ticket/11949Nathan Guse2013-11-111-1/+1
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | [ticket/11949] Do not prepend leading backslash to cache class name
| * | | | | | | | | | [ticket/11949] Do not prepend leading backslash to cache class nameJoas Schilling2013-11-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The container seems to prepend the leading \ itself, so we get an InvalidArgumentException with message '"'\\phpbb\\cache\\driver\\file'" is not a valid class name for the "cache.driver" service.' PHPBB3-11949
* | | | | | | | | | | Merge pull request #1855 from nickvergessen/ticket/12002Nathan Guse2013-11-112-7/+12
|\ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / |/| | | | | | | | | | Ticket/12002 Add link hash to extension manager links
| * | | | | | | | | | [ticket/12002] Change functional test to use link hashJoas Schilling2013-11-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12002
| * | | | | | | | | | [ticket/12002] Add link hash to extension manager linksJoas Schilling2013-11-081-6/+11
| | |_|_|_|_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12002
* | | | | | | | | | Merge remote-tracking branch 'dhruv/ticket/12007' into developJoas Schilling2013-11-091-3/+3
|\ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * dhruv/ticket/12007: [ticket/12007] Default last_result to 0 instead of false
| * | | | | | | | | [ticket/12007] Default last_result to 0 instead of falseDhruv2013-11-081-3/+3
| | |/ / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PostgreSQL does not map null/false to 0 and thus this variable causes an error. PHPBB3-12007
* | | | | | | | | [ticket/11922] Drop all keys before trying to delete columns to avoid issuesJoas Schilling2013-11-082-1/+21
| |/ / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | On MSSQL columns that have an index can not be dropped. PHPBB3-11922