aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | [ticket/12273] Only check selected filesJoas Schilling2014-04-241-3/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12273
| * | | | | | [ticket/12273] Verify that the events are still in the named filesJoas Schilling2014-04-241-10/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12273
| * | | | | | [ticket/12273] Fix missing space in some ExceptionsJoas Schilling2014-04-201-6/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12273
| * | | | | | [ticket/12273] Remove duplicated codeJoas Schilling2014-04-201-33/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12273
| * | | | | | [ticket/12273] Add file line to exception messageJoas Schilling2014-04-201-29/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12273
| * | | | | | [ticket/12273] Move phpBB test to new file and use a data providerJoas Schilling2014-04-201-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12273
| * | | | | | [ticket/12273] Allow multiple $vars linesJoas Schilling2014-04-201-9/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12273
| * | | | | | [ticket/12273] Do not use Inline control structuresJoas Schilling2014-04-181-3/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12273
| * | | | | | [ticket/12273] Make event exporter compatible with php 5.3.3Joas Schilling2014-04-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12273
| * | | | | | [ticket/12273] Move MD Exporter to separate fileJoas Schilling2014-04-181-0/+223
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12273
| * | | | | | [ticket/12273] Rename exporter to php_exporterJoas Schilling2014-04-181-72/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12273
| * | | | | | [ticket/12273] Move event exporter to namespaceJoas Schilling2014-04-181-0/+610
| |/ / / / / | | | | | | | | | | | | | | | | | | PHPBB3-12273
* | | | | | Merge remote-tracking branch 'github-nickvergessen/ticket/12371' into ↵Nils Adermann2014-05-028-81/+116
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | develop-ascraeus * github-nickvergessen/ticket/12371: [ticket/12371] Fix language string [ticket/12371] Fix typos in comment [ticket/12371] Fix redirect link for approve_post and post_in_queue [ticket/12371] Delete the approve_post notification when editing a post [ticket/12371] Fix language in comment [ticket/12371] Reapprove the post and topic again in tests [ticket/12371] Correctly set is_starter when editing first post of the topic [ticket/12371] Add functional tests for reapproving [ticket/12371] Fix query in mcp_sorting() [ticket/12371] Rename disapprove and softdelete tests [ticket/12371] We do not group quote notifications anymore [ticket/12371] Fix SQL query [ticket/11772] Do not send out new topic/post notifications when reapproving [ticket/12052] Use different visibility when post was edited [ticket/12052] Add support for ITEM_UNAPPROVED to set_post_visibility method [ticket/12371] Do not add unlimited users as responders [ticket/12371] Do not update the notification entry unneccessarily [ticket/12371] Do not delete post related notifications when a post is deleted [ticket/12371] Allow notification types to redirect to a different url [ticket/12371] Do not group "quote" notifications
| * | | | | | [ticket/12371] Fix typos in commentJoas Schilling2014-05-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12371
| * | | | | | [ticket/12371] Fix redirect link for approve_post and post_in_queueJoas Schilling2014-04-252-0/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12371
| * | | | | | [ticket/12371] Fix language in commentJoas Schilling2014-04-251-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12371
| * | | | | | [ticket/12052] Use different visibility when post was editedJoas Schilling2014-04-251-8/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ... and needs to be reapproved. PHPBB3-12052
| * | | | | | [ticket/12052] Add support for ITEM_UNAPPROVED to set_post_visibility methodCesar G2014-04-251-41/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12052
| * | | | | | [ticket/12371] Do not add unlimited users as respondersJoas Schilling2014-04-251-1/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We run into the risc that the data is longer then the character limit of the table column. However as we trim the users list anyway, we can also just stop adding them and display "many others" instead of "x others" PHPBB3-12371
| * | | | | | [ticket/12371] Do not update the notification entry unneccessarilyJoas Schilling2014-04-252-11/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When the data did not change, we also don't have to run the query at all. PHPBB3-12371
| * | | | | | [ticket/12371] Allow notification types to redirect to a different urlJoas Schilling2014-04-253-0/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This way we can redirect the post and bookmark notification to the first unread post in the topic PHPBB3-12371
| * | | | | | [ticket/12371] Do not group "quote" notificationsJoas Schilling2014-04-251-23/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Grouping these notification makes no sense, as the user will not find the posts he is quoted in, when they are spread over multiple pages PHPBB3-12371
* | | | | | | Merge remote-tracking branch 'remotes/Nicofuma/ticket/12432' into ↵Nathaniel Guse2014-05-011-4/+11
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | develop-ascraeus # By Nicofuma # Via Nicofuma * remotes/Nicofuma/ticket/12432: [ticket/12432] Correcting the assertion [ticket/12432] Adding unit test [ticket/12432] Migrator should not revert custom functions
| * | | | | | | [ticket/12432] Migrator should not revert custom functionsNicofuma2014-04-261-4/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://tracker.phpbb.com/browse/PHPBB3-12432 PHPBB3-12432
* | | | | | | | [ticket/12444] The logs message aren't filled correctlyNicofuma2014-04-251-1/+1
|/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://tracker.phpbb.com/browse/PHPBB3-12444 PHPBB3-12444
* | | | | | | Merge pull request #2288 from nickvergessen/ticket/12012Andreas Fischer2014-04-251-76/+226
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/12012] Correctly drop default value constraints * nickvergessen/ticket/12012: [ticket/12012] Move property to the top [ticket/12012] Move MS SQL server comparison into a method [ticket/12012] Fix docs in connection manager [ticket/12012] Remove duplicated code (only the $sql are different) [ticket/12012] Handle begin and commit transactions in tests [ticket/12012] Drop and recreate indexes when removing columns [ticket/12012] Add a unit test for removing a column with indexes [ticket/12012] Add a unit test for changing the column type [ticket/12012] Return SQL statements for index drop/create [ticket/12012] Fix tools::mssql_get_existing_indexes() for SQL Server 2000 [ticket/12012] Drop and recreate indexes when changing a column on MSSQL [ticket/12012] Fix query layout [ticket/12012] Correctly drop default value constraints on MSSQL
| * | | | | | [ticket/12012] Move property to the topJoas Schilling2014-04-241-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12012
| * | | | | | [ticket/12012] Move MS SQL server comparison into a methodJoas Schilling2014-04-241-18/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12012
| * | | | | | [ticket/12012] Remove duplicated code (only the $sql are different)Joas Schilling2014-04-201-59/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12012
| * | | | | | [ticket/12012] Drop and recreate indexes when removing columnsJoas Schilling2014-04-171-2/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12012
| * | | | | | [ticket/12012] Return SQL statements for index drop/createJoas Schilling2014-04-171-3/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Otherwise we recreate the index before changing the column PHPBB3-12012
| * | | | | | [ticket/12012] Fix tools::mssql_get_existing_indexes() for SQL Server 2000Joas Schilling2014-04-171-14/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12012
| * | | | | | [ticket/12012] Drop and recreate indexes when changing a column on MSSQLJoas Schilling2014-04-171-0/+111
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12012
| * | | | | | [ticket/12012] Fix query layoutJoas Schilling2014-04-171-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12012
| * | | | | | [ticket/12012] Correctly drop default value constraints on MSSQLJoas Schilling2014-04-171-85/+59
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We need to drop the default constraints of a column, before being able to change their type or deleting them. PHPBB3-12012
* | | | | | Merge remote-tracking branch 'github-nickvergessen/ticket/11917' into ↵Nils Adermann2014-04-241-0/+40
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | develop-ascraeus * github-nickvergessen/ticket/11917: [ticket/11917] Move OAuth Module to the bottom while installing [ticket/11917] Hide OAuth UCP Module when OAuth is not the selected backend Conflicts: phpBB/install/install_install.php
| * | | | | [ticket/11917] Hide OAuth UCP Module when OAuth is not the selected backendJoas Schilling2014-04-121-0/+40
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11917
* | | | | | [ticket/12422] Fix debug warning in log searchOliver Schramm2014-04-201-2/+16
| |/ / / / |/| | | | | | | | | | | | | | PHPBB3-12422
* | | | | [ticket/12121] Preserve link redirect counts when updating from 3.0.x.Cesar G2014-04-151-0/+9
| | | | | | | | | | | | | | | | | | | | PHPBB3-12121
* | | | | Merge branch 'develop-olympus' into develop-ascraeusAndreas Fischer2014-04-151-2/+2
| |/ / / |/| | | | | | | | | | | | | | | * develop-olympus: [ticket/12397] Fix sql_unique_index_exists doc block
* | | | Merge pull request #2286 from nickvergessen/ticket/12388Andreas Fischer2014-04-151-0/+4
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/12388] Fix translation of log entries without additional log data * nickvergessen/ticket/12388: [ticket/12388] Add tests for lang() use on log actions without data [ticket/12388] Fix translation of log entries without additional log data
| * | | | [ticket/12388] Fix translation of log entries without additional log dataJoas Schilling2014-04-111-0/+4
| |/ / / | | | | | | | | | | | | PHPBB3-12388
* | | | [ticket/12004] Support empty routes to app.php/ in path_helperMarc Alexander2014-04-111-0/+10
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | The symfony routing component allows us to use the path "/" for routes. Therefore, we should be able to use example.com/app.php/ for controllers. However, this currently does not properly work. The method get_web_root_path incorrectly returns phpbb_root_path. Therefore, paths to images or files are broken. PHPBB3-12004
* | | Merge remote-tracking branch 'github-nickvergessen/ticket/12113' into ↵Nils Adermann2014-04-101-4/+18
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | develop-ascraeus * github-nickvergessen/ticket/12113: [ticket/12113] Fix view_log() tests [ticket/12113] Correctly use plurals when deleting user warnings [ticket/12113] Allow log entries to use plurals
| * | | [ticket/12113] Allow log entries to use pluralsJoas Schilling2014-04-011-4/+18
| | | | | | | | | | | | | | | | PHPBB3-12113
* | | | Merge remote-tracking branch 'github-nickvergessen/ticket/12331' into ↵Nils Adermann2014-04-101-0/+1
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | develop-ascraeus * github-nickvergessen/ticket/12331: [ticket/12331] Add functional test for saving custom profile fields [ticket/12331] Fix SQL error when inserting a new entry to profile field data
| * | | | [ticket/12331] Fix SQL error when inserting a new entry to profile field dataJoas Schilling2014-03-301-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There was a "Field 'pf_phpbb_interests' doesn't have a default value" error, because we didn't specify values for the disabled fields. We can not disable the sql_return_on_error() thou, because it otherwise we run into "Duplicate entry '2' for key 'PRIMARY'" errors when the user submits the form again but didn't change any values. PHPBB3-12331
* | | | | Merge remote-tracking branch 'github-nickvergessen/ticket/12282' into ↵Nils Adermann2014-04-1056-390/+572
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | develop-ascraeus * github-nickvergessen/ticket/12282: [ticket/12282] Update new references [ticket/12282] Update container db mock [ticket/12282] Add new line at EOF of the interface [ticket/12282] Use interface for type hinting [ticket/12282] Use {@inheritDoc} for inherited methods [ticket/12282] Add Interface for DBAL drivers
| * | | | | [ticket/12282] Update new referencesJoas Schilling2014-04-011-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12282
| * | | | | [ticket/12282] Add new line at EOF of the interfaceJoas Schilling2014-04-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12282