aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/security/235] Only allow one wildcard in the search query to limit ↵Derky2019-04-261-0/+9
| | | | | | the database load SECURITY-235
* [ticket/security/235] Use whitespace instead of word boundary regex to ↵Derky2019-04-261-1/+1
| | | | | | | remove wildcards This fixes removing the wildcard in the following search query: *.test SECURITY-235
* [ticket/security/235] Remove non trailing wildcards from search keywordsDerky2019-04-251-0/+5
| | | | | Database indexes are only used if wildcards are used at the end. SECURITY-235
* [ticket/security/235] Apply wildcard char count patchDerky2019-03-141-9/+15
| | | | SECURITY-235
* Merge pull request #5544 from 3D-I/ticket/15986Marc Alexander2019-03-141-0/+1
|\ | | | | | | [ticket/15986] Add missing language key for posting.php
| * [ticket/15986] Add missing language key for posting.php3D-I2019-03-071-0/+1
| | | | | | | | PHPBB3-15986
* | Merge pull request #5509 from mrgoldy/ticket/15939Marc Alexander2019-03-131-4/+4
|\ \ | | | | | | | | | [ticket/15939] Fix Pagination docblocks
| * | [ticket/15939] Pagination docblocksmrgoldy2019-01-141-4/+4
| | | | | | | | | | | | PHPBB3-15939
* | | Merge pull request #5512 from jasonmarlin/ticket/15941Marc Alexander2019-03-131-3/+5
|\ \ \ | | | | | | | | | | | | [ticket/15941] Replace MAX to speed up query in update_post_information
| * | | [ticket/15941] Small change to induce rebuildjasonmarlin2019-01-181-1/+1
| | | | | | | | | | | | | | | | PHPBB3-15941
| * | | [ticket/15941] Replace MAX SQL in functions_posting.phpjasonmarlin2019-01-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Replace MAX SQL function with faster query using order by and limit. The ajacent query could also be optimized to eliminate the usage of MAX. Note that adding a compound key as suggested by EXPLAIN SQL yields an improvement, but not nearly as fast as ORDER + LIMIT. PHPBB3-15941
| * | | [ticket/15941] Replace MAX to speed up query in update_post_informationjasonmarlin2019-01-151-3/+5
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | Replace MAX SQL function with faster query using order by and limit. The ajacent query could also be optimized to eliminate the usage of MAX. Note that adding a compound key as suggested by EXPLAIN SQL yields an improvement, but not nearly as fast as ORDER + LIMIT. PHPBB3-15941
* | | Merge pull request #5533 from rubencm/ticket/15965Marc Alexander2019-03-133-5/+21
|\ \ \ | | | | | | | | | | | | [ticket/15965] Fix hardcoded directory [3.2.x only]
| * | | [ticket/15965] Fix hardcoded directoryrubencm2019-02-123-5/+21
| | | | | | | | | | | | | | | | PHPBB3-15965
* | | | Merge pull request #5539 from 3D-I/ticket/15975Marc Alexander2019-03-101-1/+2
|\ \ \ \ | | | | | | | | | | | | | | | [ticket/15975] Remove user notification data upon user deletion
| * | | | [ticket/15975] Remove user notification data upon user deletion3D-I2019-02-231-1/+2
| | |_|/ | |/| | | | | | | | | | PHPBB3-15975
* | | | Merge pull request #5458 from 3D-I/ticket/15884Marc Alexander2019-02-232-0/+99
|\ \ \ \ | |_|/ / |/| | | | | | | [ticket/15884] Add memberlist_body_* events
| * | | [ticket/15884] Alphabetical order - last bit3D-I2018-12-261-4/+4
| | | | | | | | | | | | | | | | PHPBB3-15884
| * | | [ticket/15884] Alphabetical order3D-I2018-12-261-32/+32
| | | | | | | | | | | | | | | | PHPBB3-15884
| * | | [ticket/15884] Add more events3D-I2018-12-012-9/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | update events.md (version) update events.md (new events) PHPBB3-15884
| * | | [ticket/15884] Add memberlist_body_* events3D-I2018-11-291-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | update description (typo) PHPBB3-15884
| * | | [ticket/15884] Add memberlist_body_* events3D-I2018-11-291-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | update events.md PHPBB3-15884
| * | | [ticket/15884] Add memberlist_body_* events3D-I2018-11-292-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | update events name update events.md PHPBB3-15884
| * | | [ticket/15884] Add memberlist_body_* events3D-I2018-11-292-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | update events name update events.md PHPBB3-15884
| * | | [ticket/15884] Add memberlist_body_* events3D-I2018-11-292-8/+49
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | add new events for group update events name update events.md PHPBB3-15884
| * | | [ticket/15884] Add memberlist_body_* events3D-I2018-11-271-0/+28
| | | | | | | | | | | | | | | | | | | | | | | | update events.md PHPBB3-15884
| * | | [ticket/15884] Add memberlist_body_* events3D-I2018-11-271-0/+4
| | | | | | | | | | | | | | | | PHPBB3-15884
* | | | Merge pull request #5487 from 3D-I/ticket/15918Marc Alexander2019-02-111-3/+3
|\ \ \ \ | | | | | | | | | | | | | | | [ticket/15918] Fix addslashes in mcp_ban.html
| * | | | [ticket/15918] Apply the Twig escape filter to not add-slashed contents3D-I2018-12-241-2/+2
| | | | | | | | | | | | | | | | | | | | PHPBB3-15918
| * | | | [ticket/15918] Remove redundant escape JS3D-I2018-12-241-3/+3
| | |/ / | |/| | | | | | | | | | | | | | | | | | In mcp_ban.html and coherently use twig syntax PHPBB3-15918
* | | | Merge pull request #5525 from kasimi/ticket/15954Marc Alexander2019-02-119-22/+88
|\ \ \ \ | | | | | | | | | | | | | | | [ticket/15954] Add safeguards to include() calls
| * | | | [ticket/15954] Fixed including mcp_front.phpkasimi2019-01-301-1/+1
| | | | | | | | | | | | | | | | | | | | PHPBB3-15954
| * | | | [ticket/15954] Add safeguards to include() callskasimi2019-01-269-22/+88
| | | | | | | | | | | | | | | | | | | | PHPBB3-15954
* | | | | Merge pull request #5529 from 3D-I/ticket/15960Marc Alexander2019-02-111-0/+4
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | [ticket/15960] Add SQL transactions to functions_admin.php
| * | | | [ticket/15960] Add SQL transactions to functions_admin.php3D-I2019-02-011-0/+4
| |/ / / | | | | | | | | | | | | PHPBB3-15960
* | | | Merge pull request #5510 from mrgoldy/ticket/15931Marc Alexander2019-01-202-5/+10
|\ \ \ \ | | | | | | | | | | | | | | | [ticket/15931] Fix PM report emails
| * | | | [ticket/15931] Fix PM report emailsmrgoldy2019-01-142-5/+10
| | |_|/ | |/| | | | | | | | | | PHPBB3-15931
* | | | Merge pull request #5469 from senky/ticket/15899Marc Alexander2019-01-201-0/+20
|\ \ \ \ | |/ / / |/| | | | | | | [ticket/15899] Add core.modify_attachment_sql_ary_on_* events
| * | | [ticket/15899] Add core.modify_attachment_sql_ary_on_* eventsJakub Senko2018-12-271-0/+20
| | | | | | | | | | | | | | | | PHPBB3-15899
* | | | Merge pull request #5498 from 3D-I/ticket/15926Marc Alexander2019-01-062-3/+3
|\ \ \ \ | | | | | | | | | | | | | | | [ticket/15926] Deny 3.2.x installation if PHP >= 7.3-dev
| * | | | [ticket/15926] Deny 3.2.x installation if PHP >= 7.3-dev3D-I2019-01-061-1/+1
| | | | | | | | | | | | | | | | | | | | PHPBB3-15926
| * | | | [ticket/15926] Update docs/INSTALL.html3D-I2019-01-051-1/+1
| | | | | | | | | | | | | | | | | | | | PHPBB3-15926
| * | | | [ticket/15926] Deny 3.2.x installation if PHP >= 7.3-dev3D-I2019-01-051-1/+1
| | | | | | | | | | | | | | | | | | | | PHPBB3-15926
| * | | | [ticket/15926] Deny 3.2.x installation if PHP >= 7.3-dev3D-I2019-01-051-2/+2
| | |/ / | |/| | | | | | | | | | PHPBB3-15926
* | | | Merge pull request #5457 from battye/ticket/15883Marc Alexander2019-01-054-5/+53
|\ \ \ \ | | | | | | | | | | | | | | | [ticket/15883] New error message for when users try adding invalid usernames to a group
| * | | | [ticket/15883] Doc block changebattye2019-01-051-2/+2
| | | | | | | | | | | | | | | | | | | | PHPBB3-15883
| * | | | [ticket/15883] Review changesbattye2019-01-043-2/+3
| | | | | | | | | | | | | | | | | | | | PHPBB3-15883
| * | | | [ticket/15883] Use the new language objectbattye2018-11-292-6/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Using the new ->lang() format. Made the username comparison case insensitive. Also fixed a bug where the return to previous page link in the UCP was going back to the list of groups rather than the specific manage group page when an error occurred. PHPBB3-15883
| * | | | [ticket/15883] Add error for invalid usernames being added to a groupbattye2018-11-264-4/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update the ACP and the UCP so that when bulk adding users to a group, if invalid usernames are submitted alongside valid usernames then a message will be displayed to inform the user what the invalid usernames are. PHPBB3-15883
* | | | | Merge pull request #5488 from marc1706/ticket/15921chita2018-12-295-27/+32
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | [ticket/15921] Update textformattter to 1.3.2