aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/12963] Fix the migration's finder for the tests (path, new instance)Tristan Darricau2014-09-181-2/+4
| | | | PHPBB3-12963
* Merge pull request #2964 from nickvergessen/ticket/12963Tristan Darricau2014-09-181-1/+8
|\ | | | | | | | | | | | | [ticket/12963] Correctly load migration files from migration/ in tests as well * nickvergessen/ticket/12963: [ticket/12963] Correctly load migration files from migration/ in tests as well
| * [ticket/12963] Correctly load migration files from migration/ in tests as wellJoas Schilling2014-09-171-1/+8
|/ | | | PHPBB3-12963
* [ticket/13064] Revert "[ticket/13064] Validate the migrations provided to ..."Joas Schilling2014-09-172-27/+2
| | | | | | This reverts commit 46a9fe93d797bf7d56fd9b1e204f3c0459270122. PHPBB3-13064
* Merge pull request #2948 from Nicofuma/ticket/13061Joas Schilling2014-09-175-57/+4
|\ | | | | | | | | | | | | [ticket/13061] Replace the service event.subscriber_loader by a compiler pass * Nicofuma/ticket/13061: [ticket/13061] Replace the service event.subscriber_loader by a compiler pass
| * [ticket/13061] Replace the service event.subscriber_loader by a compiler passTristan Darricau2014-09-135-57/+4
| | | | | | | | PHPBB3-13061
* | Merge pull request #2949 from rxu/ticket/13062Joas Schilling2014-09-171-5/+38
|\ \ | | | | | | | | | | | | | | | | | | [ticket/13062] Add viewforum.php core event to modify topic ids sql query * rxu/ticket/13062: [ticket/13062] Add viewforum.php core event to modify topic ids sql query
| * | [ticket/13062] Add viewforum.php core event to modify topic ids sql queryrxu2014-09-141-5/+38
| |/ | | | | | | | | | | Event request: http://area51.phpbb.com/phpBB/viewtopic.php?f=111&t=45383 PHPBB3-13062
* | Merge pull request #2951 from Nicofuma/ticket/13064Joas Schilling2014-09-172-2/+27
|\ \ | | | | | | | | | | | | | | | | | | [ticket/13064] Validate the migrations provided to migrator::set_migrations() * Nicofuma/ticket/13064: [ticket/13064] Validate the migrations provided to migrator::set_migrations()
| * | [ticket/13064] Validate the migrations provided to migrator::set_migrations()Tristan Darricau2014-09-142-2/+27
| |/ | | | | | | PHPBB3-13064
* | Merge pull request #2962 from Senky/ticket/13044Joas Schilling2014-09-175-9/+9
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/13044] Expires header violates RFC 2616 * Senky/ticket/13044: [ticket/13044] Move GMT out of gmdate in functions_acp [ticket/13044] Move GMT out of gmdate() [ticket/13044] \G\M\T to GMT in whole project [ticket/13044] move GMT string out of gmdate() [ticket/13044] Correct Expires headers
| * | [ticket/13044] Move GMT out of gmdate in functions_acpJakub Senko2014-09-171-1/+1
| | | | | | | | | | | | PHPBB3-13044
| * | [ticket/13044] Move GMT out of gmdate()Jakub Senko2014-09-171-1/+1
| | | | | | | | | | | | PHPBB3-13044
| * | [ticket/13044] \G\M\T to GMT in whole projectJakub Senko2014-09-171-3/+3
| | | | | | | | | | | | | | | | | | Note that there are more uses of "\G\M\T" in vendor files. PHPBB3-13044
| * | [ticket/13044] move GMT string out of gmdate()Jakub Senko2014-09-175-6/+6
| | | | | | | | | | | | PHPBB3-13044
| * | [ticket/13044] Correct Expires headersJakub Senko2014-09-175-6/+6
|/ / | | | | | | PHPBB3-13044
* | Merge pull request #2922 from Nicofuma/ticket/13036Marc Alexander2014-09-173-3/+255
|\ \ | | | | | | | | | [ticket/13036] Make the reference type configurable when generating a route
| * | [ticket/13036] Complete testsTristan Darricau2014-09-162-0/+121
| | | | | | | | | | | | PHPBB3-13036
| * | [ticket/13036] Add unit testsTristan Darricau2014-09-162-0/+129
| | | | | | | | | | | | PHPBB3-13036
| * | [ticket/13036] Make the reference type configurable when generating a routeTristan Darricau2014-09-161-3/+5
| | | | | | | | | | | | PHPBB3-13036
* | | Merge pull request #2932 from Nicofuma/ticket/12963Marc Alexander2014-09-1710-8/+251
|\ \ \ | | | | | | | | | | | | [ticket/12963] Load extensions migrations from /migration
| * | | [ticket/12963] Edit deprecation messageTristan Darricau2014-09-163-3/+3
| | | | | | | | | | | | | | | | PHPBB3-12963
| * | | [ticket/12963] Add unit testsTristan Darricau2014-09-107-1/+214
| | | | | | | | | | | | | | | | PHPBB3-12963
| * | | [ticket/12963] Load extensions migrations from /migrationTristan Darricau2014-09-103-4/+23
| | | | | | | | | | | | | | | | PHPBB3-12963
| * | | [ticket/12963] Don't use static var in \extension\base\get_migration_file_listTristan Darricau2014-09-101-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The static var was global to all instance of \phpbb\base and so if two different instances (for two different extensions) were created by the same script they shared the same migrations list. PHPBB3-12963
| * | | [ticket/12963] Fix the list of migrations in database_update.phpTristan Darricau2014-09-101-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Without this patch the finder grab all the class available in the ext folder and not only the migrations. This change is backported for the one done before to the cli tool db:migrate. (see the commit 3420f8f3201ac337434f73ee00bda6df7b378212) PHPBB3-12963
* | | | Merge pull request #2959 from prototech/ticket/13069Marc Alexander2014-09-171-6/+1
|\ \ \ \ | |_|/ / |/| | | | | | | [ticket/13069] Fix timezone location filtering.
| * | | [ticket/13069] Fix timezone location filtering.Cesar G2014-09-161-6/+1
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | $timezone contains the original jQuery object, therefore the subsequent removal of the optgroup children while filtering has no effect on the $replacement object - the one that's now visible to the user. We'll simplify and fix this by injecting the content of the copy instead of going through the trouble of cloning it. PHPBB3-13069
* | | Merge pull request #2921 from Nicofuma/ticket/13034Marc Alexander2014-09-166-81/+121
|\ \ \ | | | | | | | | | | | | [ticket/13034] Fix the route generated for the frontend not in the phpbb root path
| * | | [ticket/13034] Fix testsTristan Darricau2014-09-163-6/+9
| | | | | | | | | | | | | | | | PHPBB3-13034
| * | | [ticket/13034] Update the base url to move to the root dirTristan Darricau2014-09-152-2/+19
| | | | | | | | | | | | | | | | PHPBB3-13034
| * | | [ticket/13034] Add commentTristan Darricau2014-09-151-0/+2
| | | | | | | | | | | | | | | | PHPBB3-13034
| * | | [ticket/13034] Use utf8_basenameTristan Darricau2014-09-141-1/+1
| | | | | | | | | | | | | | | | PHPBB3-13034
| * | | [ticket/13034] Fix unit testsTristan Darricau2014-09-041-23/+33
| | | | | | | | | | | | | | | | PHPBB3-13034
| * | | [ticket/13034] Fix the route generated for the frontend not in the phpbb rootTristan Darricau2014-09-044-55/+63
| | | | | | | | | | | | | | | | PHPBB3-13034
* | | | Merge pull request #2958 from prototech/ticket/13018Andreas Fischer2014-09-151-88/+60
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/13018] Remove duplicate logic in confirm box and alert box handling. * prototech/ticket/13018: [ticket/13018] Clean up and fix some logic. [ticket/13018] Do not handle events in close function. [ticket/13018] Reduce the delta further. [ticket/13018] Remove duplicate logic in confirm box and alert box handling.
| * | | | [ticket/13018] Clean up and fix some logic.Cesar G2014-09-151-4/+3
| | | | | | | | | | | | | | | | | | | | PHPBB3-13018
| * | | | [ticket/13018] Do not handle events in close function.Cesar G2014-09-151-14/+13
| | | | | | | | | | | | | | | | | | | | PHPBB3-13018
| * | | | [ticket/13018] Reduce the delta further.Cesar G2014-09-141-28/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The callback does not actually do anything when cancelling the confirmation box so we can avoid calling it altogether when cancel is clicked. PHPBB3-13018
| * | | | [ticket/13018] Remove duplicate logic in confirm box and alert box handling.Cesar G2014-09-141-85/+73
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This ensures a more consistent handling of the various closing/opening actions and fixes some bugs where certain event handlers are not turned off in certain instances. PHPBB3-13018
* | | | | Merge pull request #2943 from Nicofuma/ticket/13056Andreas Fischer2014-09-152-0/+4
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/13056] Move the arguments of the request class to the DI * Nicofuma/ticket/13056: [ticket/13056] Move the arguments of the request class to the DI
| * | | | | [ticket/13056] Move the arguments of the request class to the DITristan Darricau2014-09-132-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-13056
* | | | | | Merge remote-tracking branch 'PayBas/ticket/10472' into develop-ascraeusCesar G2014-09-155-43/+36
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * PayBas/ticket/10472: [ticket/10472] Remove dd selector and use -moz-padding-end [ticket/10472] Fix weird padding on input type=number [ticket/10472] More clearing and white-space fixes [ticket/10472] Fix ACP overflow:hidden problem for medium-sized screens
| * | | | | | [ticket/10472] Remove dd selector and use -moz-padding-endPayBas2014-09-151-10/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10472
| * | | | | | [ticket/10472] Fix weird padding on input type=numberPayBas2014-09-151-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10472
| * | | | | | [ticket/10472] More clearing and white-space fixesPayBas2014-09-155-56/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10472
| * | | | | | [ticket/10472] Fix ACP overflow:hidden problem for medium-sized screensPayBas2014-09-151-2/+23
|/ / / / / / | | | | | | | | | | | | | | | | | | PHPBB3-10472
* | | | | | Merge pull request #2956 from prototech/ticket/13019Tristan Darricau2014-09-144-19/+9
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/13019] Always accept a reason for deleting a post/topic. * prototech/ticket/13019: [ticket/13019] Do not hide reason field when deleting permanently. [ticket/13019] Rename deletion reason label. [ticket/13019] Always accept a reason for deleting a post/topic.
| * | | | | | [ticket/13019] Do not hide reason field when deleting permanently.Cesar G2014-09-141-8/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-13019
| * | | | | | [ticket/13019] Rename deletion reason label.Cesar G2014-09-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-13019