aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/12174] Update the conditionsTristan Darricau2014-05-091-10/+7
| | | | PHPBB3-12174
* [ticket/12174] Remove inline assignmentTristan Darricau2014-05-091-1/+2
| | | | PHPBB3-12174
* [ticket/12174] Update sql queryTristan Darricau2014-05-091-9/+10
| | | | PHPBB3-12174
* [ticket/12174] Revert the changes on $topic_update_arrayTristan Darricau2014-05-081-4/+4
| | | | PHPBB3-12174
* [ticket/12174] CorrectionsTristan Darricau2014-05-081-21/+10
| | | | PHPBB3-12174
* [ticket/12174] Update topic_attachment flag when a post is soft-deletedTristan Darricau2014-05-082-11/+62
| | | | | | https://tracker.phpbb.com/browse/PHPBB3-12174 PHPBB3-12174
* Merge pull request #2411 from nickvergessen/ticket/12503Dhruv Goel2014-05-067-20/+20
|\ | | | | [ticket/12503] Fix several errors in test suite
| * [ticket/12504] Use local variables where possibleJoas Schilling2014-05-051-5/+8
| | | | | | | | PHPBB3-12504
| * [ticket/12504] Use defined variablesJoas Schilling2014-05-051-2/+2
| | | | | | | | PHPBB3-12504
| * [ticket/12504] Remove unused request object from avatar manager testJoas Schilling2014-05-051-1/+0
| | | | | | | | PHPBB3-12504
| * [ticket/12486] Make assertion on the return to remove "Risky" from phpunitJoas Schilling2014-05-051-4/+2
| | | | | | | | PHPBB3-12486
| * [ticket/12486] Rename data provider to fix "Risky" from phpunitJoas Schilling2014-05-051-2/+2
| | | | | | | | PHPBB3-12486
| * [ticket/12503] All tests should extend \phpbb_test_caseJoas Schilling2014-05-056-6/+6
| | | | | | | | PHPBB3-12503
* | Merge pull request #2373 from Nicofuma/ticket/12459Joas Schilling2014-05-069-44/+47
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/12459] Unapproved posts/topics are not correctly handled in feeds * Nicofuma/ticket/12459: [ticket/12459] Change language strings [ticket/12459] Enable related tests [ticket/12459] Fix: Differentiating unapproved and deleted posts [ticket/12459] Fix: Soft deleted topics should appear in feeds [ticket/12459] Fix: the posts were always marked as unapproved
| * | [ticket/12459] Change language stringsTristan Darricau2014-05-053-7/+9
| | | | | | | | | | | | PHPBB3-12459
| * | [ticket/12459] Enable related testsNicofuma2014-05-041-22/+9
| | | | | | | | | | | | PHPBB3-12459
| * | [ticket/12459] Fix: Differentiating unapproved and deleted postsTristan Darricau2014-05-041-1/+2
| | | | | | | | | | | | | | | | | | | | | Unapproved and deleted posts should not be displayed with the same message (POST_UNAPPROVED) PHPBB3-12459
| * | [ticket/12459] Fix: Soft deleted topics should appear in feedsTristan Darricau2014-05-045-15/+28
| | | | | | | | | | | | | | | | | | | | | As for the posts, a soft deleted topic should appear (with a corresponding message) in topic's based feeds. PHPBB3-12459
| * | [ticket/12459] Fix: the posts were always marked as unapprovedTristan Darricau2014-05-041-1/+1
| | | | | | | | | | | | | | | | | | the database return a string, so the strict comparison always returned false PHPBB3-12459
* | | Merge pull request #2397 from Nicofuma/ticket/11497Joas Schilling2014-05-069-60/+85
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/11497] Remove 'ext.finder' from services' list * Nicofuma/ticket/11497: [ticket/11497] Rename set_ext_finder in find_routing_files [ticket/11497] Change the date in the package declaration [ticket/11497] Fix pagination tests [ticket/11497] Use a mock object to define the root folder for the finder [ticket/11497] Generate the list of the routes in controller_helper [ticket/11497] Fix the path for the finder in controller_provider [ticket/11497] Fix tests [ticket/11497] Update pagination test [ticket/11497] Remove 'ext.finder' from services' list
| * | | [ticket/11497] Rename set_ext_finder in find_routing_filesTristan Darricau2014-05-057-8/+8
| | | | | | | | | | | | | | | | PHPBB3-11497
| * | | [ticket/11497] Change the date in the package declarationTristan Darricau2014-05-031-1/+1
| | | | | | | | | | | | | | | | PHPBB3-11497
| * | | [ticket/11497] Fix pagination testsTristan Darricau2014-05-031-1/+1
| | | | | | | | | | | | | | | | PHPBB3-11497
| * | | [ticket/11497] Use a mock object to define the root folder for the finderTristan Darricau2014-05-033-3/+25
| | | | | | | | | | | | | | | | PHPBB3-11497
| * | | [ticket/11497] Generate the list of the routes in controller_helperTristan Darricau2014-05-031-1/+1
| | | | | | | | | | | | | | | | PHPBB3-11497
| * | | [ticket/11497] Fix the path for the finder in controller_providerNicofuma2014-05-031-1/+1
| | | | | | | | | | | | | | | | PHPBB3-11497
| * | | [ticket/11497] Fix testsNicofuma2014-05-031-1/+1
| | | | | | | | | | | | | | | | PHPBB3-11497
| * | | [ticket/11497] Update pagination testNicofuma2014-05-031-1/+1
| | | | | | | | | | | | | | | | PHPBB3-11497
| * | | [ticket/11497] Remove 'ext.finder' from services' listNicofuma2014-05-038-59/+62
| |/ / | | | | | | | | | PHPBB3-11497
* | | Merge remote-tracking branch 'VSEphpbb/ticket/12332' into develop-ascraeusCesar G2014-05-059-25/+46
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * VSEphpbb/ticket/12332: [ticket/12332] Add missing semicolon to inline styling [ticket/12332] Adjust size of mark column where too wide [ticket/12332] Adjust column widths for responsive changes [ticket/12332] Restore some changes back to original state [ticket/12332] Add break-word to fixed width table CSS [ticket/12332] Accomplish all word creaking in template and CSS [ticket/12332] Remove width sizing, as it is already set [ticket/12332] Fix displaying attachments with long file names
| * | | [ticket/12332] Add missing semicolon to inline stylingMatt Friedman2014-05-011-1/+1
| | | | | | | | | | | | | | | | PHPBB3-12332
| * | | [ticket/12332] Adjust size of mark column where too wideMatt Friedman2014-04-262-3/+3
| | | | | | | | | | | | | | | | PHPBB3-12332
| * | | [ticket/12332] Adjust column widths for responsive changesMatt Friedman2014-04-262-5/+5
| | | | | | | | | | | | | | | | PHPBB3-12332
| * | | [ticket/12332] Restore some changes back to original stateMatt Friedman2014-04-262-2/+2
| | | | | | | | | | | | | | | | PHPBB3-12332
| * | | [ticket/12332] Add break-word to fixed width table CSSMatt Friedman2014-04-261-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | This ensures long words break and remain within the table cell PHPBB3-12332
| * | | [ticket/12332] Accomplish all word creaking in template and CSSMatt Friedman2014-04-264-19/+19
| | | | | | | | | | | | | | | | PHPBB3-12332
| * | | [ticket/12332] Remove width sizing, as it is already setMatt Friedman2014-04-261-1/+0
| | | | | | | | | | | | | | | | PHPBB3-12332
| * | | [ticket/12332] Fix displaying attachments with long file namesMatt Friedman2014-04-258-10/+31
| | | | | | | | | | | | | | | | PHPBB3-12332
* | | | Merge remote-tracking branch 'Crizz0/ticket/12498' into develop-ascraeusCesar G2014-05-051-0/+5
|\ \ \ \ | |_|_|/ |/| | | | | | | | | | | * Crizz0/ticket/12498: [ticket/12498] Adds height-property for IE8 in tweaks.css
| * | | [ticket/12498] Adds height-property for IE8 in tweaks.cssCrizzo2014-05-041-0/+5
| | | | | | | | | | | | | | | | PHPBB3-12498
* | | | Merge pull request #2409 from prototech/ticket/12491Joas Schilling2014-05-052-4/+4
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/12491] Fix clashing USERNAME_FULL template variable. * prototech/ticket/12491: [ticket/12491] Fix clashing USERNAME_FULL template variable.
| * | | | [ticket/12491] Fix clashing USERNAME_FULL template variable.Cesar G2014-05-042-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The user notes and user warn pages have a variable with the same name. PHPBB3-12491
* | | | | Merge remote-tracking branch 'MGaetan89/ticket/12415' into develop-ascraeusCesar G2014-05-041-2/+2
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | * MGaetan89/ticket/12415: [ticket/12415] Use private message instead of "pm" accronym
| * | | | | [ticket/12415] Use private message instead of "pm" accronymGaƫtan Muller2014-05-041-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://tracker.phpbb.com/browse/PHPBB3-12415 PHPBB3-12415
* | | | | | Merge pull request #2407 from Nicofuma/ticket/12499Andreas Fischer2014-05-041-1/+1
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/12499] Incorrect call to phpbb\log\log::add() in db:migrate * Nicofuma/ticket/12499: [ticket/12499] Incorrect call to phpbb\log\log::add() in db:migrate
| * | | | | [ticket/12499] Incorrect call to phpbb\log\log::add() in db:migrateTristan Darricau2014-05-041-1/+1
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | https://tracker.phpbb.com/browse/PHPBB3-12499 PHPBB3-12499
* | | | | Merge branch 'prep-release-3.1.0-b3' into develop-ascraeusJoas Schilling2014-05-048-36/+234
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * prep-release-3.1.0-b3: [prep-release-3.1.0-b3] Update phpBB Version for b4 development [prep-release-3.1.0-b3] Add changelog for 3.1.0-b3 [prep-release-3.1.0-b3] Prepare Changelog [prep-release-3.1.0-b3] Add migration for 3.1.0-b3 [prep-release-3.1.0-b3] Update version to 3.1.0-b3
| * | | | | [prep-release-3.1.0-b3] Update phpBB Version for b4 developmentJoas Schilling2014-05-043-5/+5
| | | | | |
| * | | | | [prep-release-3.1.0-b3] Add changelog for 3.1.0-b3Joas Schilling2014-05-041-0/+163
| | | | | |
| * | | | | [prep-release-3.1.0-b3] Prepare ChangelogJoas Schilling2014-05-041-26/+29
| | | | | |