aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/13652] Fix coding styleTristan Darricau2015-10-141-1/+1
| | | | PHPBB3-13652
* Merge pull request #3441 from brunoais/feature/sql-bool-builderTristan Darricau2015-10-141-1/+136
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [feature/sql-bool-builder] Extending DBAL query builder for boolean generation * brunoais/feature/sql-bool-builder: [feature/sql-bool-builder] Improved tests output to show the SQL error. [feature/sql-bool-builder] Adding the IS operator to predicted operators [feature/sql-bool-builder] test_single_not_like [feature/sql-bool-builder] test_single_like [feature/sql-bool-builder] test_single_not_in [feature/sql-bool-builder] test_single_in [feature/sql-bool-builder] test_and_of_or_of_and [feature/sql-bool-builder] test_triple_and_with_in [feature/sql-bool-builder] test_double_and_with_not_of_and [feature/sql-bool-builder] test_triple_and_with_is_null [feature/sql-bool-builder] Prepare testing class [feature/sql-bool-builder] Added LIKE and NOT_LIKE to the comparations [feature/sql-bool-builder] Explain better the code in the first [feature/sql-bool-builder] Also use parenthesis for the NOT operator [feature/sql-bool-builder] AS keyword must be lowercase; [feature/sql-bool-builder] Added code to use this feature for the WHERE clause [feature/sql-bool-builder] Removed non-necessary spaces [feature/sql-bool-builder] First working version
| * [feature/sql-bool-builder] Adding the IS operator to predicted operatorsbrunoais2015-03-171-0/+18
| | | | | | | | PHPBB3-13652
| * [feature/sql-bool-builder] Added LIKE and NOT_LIKE to the comparationsbrunoais2015-03-161-0/+12
| | | | | | | | PHPBB3-13652
| * [feature/sql-bool-builder] Explain better the code in the firstbrunoais2015-03-161-0/+2
| | | | | | | | | | | | Explain what that if and check is for in the first method that is called. PHPBB3-13652
| * [feature/sql-bool-builder] Also use parenthesis for the NOT operatorbrunoais2015-03-161-1/+1
| | | | | | | | | | | | Be on the safe side, also use parenthesis for the NOT operator PHPBB3-13652
| * [feature/sql-bool-builder] AS keyword must be lowercase;brunoais2015-03-161-1/+1
| | | | | | | | | | | | AS keyword must be lowercase; expected "as" but found "AS" PHPBB3-13652
| * [feature/sql-bool-builder] Added code to use this feature for the WHERE clausebrunoais2015-03-161-1/+12
| | | | | | | | PHPBB3-13652
| * [feature/sql-bool-builder] Removed non-necessary spacesbrunoais2015-03-161-29/+29
| | | | | | | | PHPBB3-13652
| * [feature/sql-bool-builder] First working versionbrunoais2015-03-161-0/+92
| | | | | | | | PHPBB3-13652
* | Merge pull request #3913 from marc1706/ticket/14168Tristan Darricau2015-10-144-0/+989
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/14168] Refactor attachment management functions into classes * marc1706/ticket/14168: (36 commits) [ticket/14168] Correctly state return type of upload and upload_attachment [ticket/14168] Use attachment manager instead of separate classes [ticket/14168] Fix docblock in manager [ticket/14168] Add more test cases for attachment manager [ticket/14168] Add new test method and more tests [ticket/14168] Fix tabs in manager and add test file [ticket/14168] Fix tests after rebase [ticket/14168] Add attachment manager service [ticket/14168] Use correct docblock [ticket/14168] Add services_attachment.yml to services.yml [ticket/14168] Minor coding style fixes [ticket/14168] Move attachment service definitions to services_attachment [ticket/14168] Improve code coverage in upload class [ticket/14168] Move image check and don't use trigger_error() [ticket/14168] Add tests for init_error() during upload [ticket/14168] Add basic test file for attachments upload [ticket/14168] Fix CS issue [ticket/14168] No longer use deprecated functions in core files [ticket/14168] Move phpbb_unlink() into attachment delete class [ticket/14168] Reset sequence before tests in delete tests ...
| * | [ticket/14168] Correctly state return type of upload and upload_attachmentMarc Alexander2015-10-122-2/+2
| | | | | | | | | | | | PHPBB3-14168
| * | [ticket/14168] Fix docblock in managerMarc Alexander2015-10-091-2/+2
| | | | | | | | | | | | PHPBB3-14168
| * | [ticket/14168] Fix tabs in manager and add test fileMarc Alexander2015-10-091-71/+71
| | | | | | | | | | | | PHPBB3-14168
| * | [ticket/14168] Add attachment manager serviceMarc Alexander2015-10-091-0/+99
| | | | | | | | | | | | PHPBB3-14168
| * | [ticket/14168] Use correct docblockMarc Alexander2015-10-091-1/+1
| | | | | | | | | | | | PHPBB3-14168
| * | [ticket/14168] Minor coding style fixesMarc Alexander2015-10-093-4/+1
| | | | | | | | | | | | PHPBB3-14168
| * | [ticket/14168] Move image check and don't use trigger_error()Marc Alexander2015-10-091-4/+4
| | | | | | | | | | | | PHPBB3-14168
| * | [ticket/14168] Move phpbb_unlink() into attachment delete classMarc Alexander2015-10-091-8/+62
| | | | | | | | | | | | PHPBB3-14168
| * | [ticket/14168] Add tests for attachment delete classMarc Alexander2015-10-091-1/+1
| | | | | | | | | | | | PHPBB3-14168
| * | [ticket/14168] Add tests for attachment resync classMarc Alexander2015-10-091-1/+3
| | | | | | | | | | | | PHPBB3-14168
| * | [ticket/14168] Coding guidelines fixesMarc Alexander2015-10-091-4/+4
| | | | | | | | | | | | PHPBB3-14168
| * | [ticket/14168] Minor coding style fixesMarc Alexander2015-10-092-2/+2
| | | | | | | | | | | | PHPBB3-14168
| * | [ticket/14168] Add attachment resync classMarc Alexander2015-10-092-87/+134
| | | | | | | | | | | | PHPBB3-14168
| * | [ticket/14168] Further split up attachment delete classMarc Alexander2015-10-091-161/+218
| | | | | | | | | | | | PHPBB3-14168
| * | [ticket/14168] Move function for attachment deletion into classMarc Alexander2015-10-091-0/+398
| | | | | | | | | | | | PHPBB3-14168
| * | [ticket/14168] Further split up attachment upload classMarc Alexander2015-10-091-61/+94
| | | | | | | | | | | | PHPBB3-14168
| * | [ticket/14168] Further split up attachment upload classMarc Alexander2015-10-091-52/+78
| | | | | | | | | | | | PHPBB3-14168
| * | [ticket/14168] Split thumbnail creation to separate methodMarc Alexander2015-10-091-0/+15
| | | | | | | | | | | | PHPBB3-14168
| * | [ticket/14168] Use language class and fix incorrect docblockMarc Alexander2015-10-091-6/+6
| | | | | | | | | | | | PHPBB3-14168
| * | [ticket/14168] Add attachment upload classMarc Alexander2015-10-091-0/+261
| | | | | | | | | | | | PHPBB3-14168
* | | Merge branch '3.1.x'Tristan Darricau2015-10-141-1/+1
|\ \ \ | | | | | | | | | | | | | | | | * 3.1.x: [ticket/13835] Normalize filename for attachments uploaded in chunks.
| * | | [ticket/13835] Normalize filename for attachments uploaded in chunks.Cesar G2015-10-131-1/+1
| | | | | | | | | | | | | | | | PHPBB3-13835
* | | | Merge branch '3.1.x'Tristan Darricau2015-10-124-13/+263
|\ \ \ \ | |/ / / | | | | | | | | | | | | * 3.1.x: [ticket/14098] Add core events to the search backends
| * | | Merge pull request #3830 from rxu/ticket/14098Tristan Darricau2015-10-124-13/+263
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/14098] Add core events to the search backends * rxu/ticket/14098: [ticket/14098] Add core events to the search backends
| | * | | [ticket/14098] Add core events to the search backendsrxu2015-10-094-13/+263
| | | | | | | | | | | | | | | | | | | | PHPBB3-14098
* | | | | Merge branch '3.1.x'Tristan Darricau2015-10-121-0/+13
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | * 3.1.x: [ticket/14191] Add core.get_gravatar_url_after event
| * | | | Merge pull request #3925 from Senky/ticket/14191Tristan Darricau2015-10-121-0/+13
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/14191] Add core.get_gravatar_url_after event * Senky/ticket/14191: [ticket/14191] Add core.get_gravatar_url_after event
| | * | | | [ticket/14191] Add core.get_gravatar_url_after eventJakub Senko2015-09-231-0/+13
| | |/ / / | | | | | | | | | | | | | | | PHPBB3-14191
* | | | | Merge branch '3.1.x'Marc Alexander2015-10-112-2/+67
|\ \ \ \ \ | |/ / / /
| * | | | Merge pull request #3864 from Zoddo/ticket/8920Marc Alexander2015-10-112-2/+67
| |\ \ \ \ | | |/ / / | |/| | | | | | | | [ticket/8920] Add a MCP PM reports view permission
| | * | | [ticket/8920] Revert update_module_auth() on revert_data()Zoddo2015-09-131-0/+21
| | | | | | | | | | | | | | | | | | | | PHPBB3-8920
| | * | | [ticket/8920] Add a MCP PM reports view permissionZoddo2015-08-302-2/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 #3903 from Zoddo/ticket/13101Marc Alexander2015-10-101-0/+150
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | [ticket/13101] Remove MSN/WLM custom profile field
| * | | | | [ticket/13101] Remove existing MSN/WLM custom profile fieldZoddo2015-10-101-0/+150
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-13101
* | | | | | Merge pull request #3896 from Zoddo/ticket/14157Marc Alexander2015-10-102-0/+45
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | | | | | | | [ticket/14157] Allow to set the alt/title attribute on post icons
| * | | | | [ticket/14157] Allow to set the alt/title attribute on post iconsZoddo2015-10-102-0/+45
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-14157
* | | | | | [ticket/14225] Inject the loader resolver when using the delegating loaderTristan Darricau2015-10-081-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-14225
* | | | | | [ticket/14220] Move route loading to servicesTristan Darricau2015-10-086-200/+407
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-14220
* | | | | | Merge pull request #3857 from Nicofuma/ticket/14124Marc Alexander2015-10-074-4/+90
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | [ticket/14124] Automatically translate exceptions in CLI