| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | [ticket/14492] Update versions in files | Marc Alexander | 2016-12-03 | 2 | -2/+2 |
| | | | | | PHPBB3-14492 | ||||
| * | [ticket/14492] Update phpBB version and fix miscellaneous code issues | Marc Alexander | 2016-12-03 | 1 | -1/+2 |
| | | | | | PHPBB3-14492 | ||||
| * | [ticket/14492] Install all extensions if 'all' is specified for extensions | Marc Alexander | 2016-12-03 | 1 | -1/+1 |
| | | | | | PHPBB3-14492 | ||||
| * | [ticket/14492] Add language variables for updating extensions | Marc Alexander | 2016-12-03 | 1 | -4/+4 |
| | | | | | PHPBB3-14492 | ||||
| * | [ticket/14492] Prevent timeouts in install & update extensions tasks | Marc Alexander | 2016-12-03 | 2 | -2/+39 |
| | | | | | PHPBB3-14492 | ||||
| * | [ticket/14492] Use same list for checking if extension should be updated | Marc Alexander | 2016-12-03 | 2 | -8/+31 |
| | | | | | PHPBB3-14492 | ||||
| * | [ticket/14492] Unify version check for installing default extensions | Marc Alexander | 2016-12-03 | 1 | -2/+2 |
| | | | | | PHPBB3-14492 | ||||
| * | [ticket/14492] Use extension manager instead of finder and add try/catch | Marc Alexander | 2016-12-03 | 2 | -34/+44 |
| | | | | | PHPBB3-14492 | ||||
| * | [ticket/14492] Remove unused use statement | Marc Alexander | 2016-12-03 | 1 | -1/+0 |
| | | | | | PHPBB3-14492 | ||||
| * | [ticket/14492] Redirect to help phpBB page after installation | Marc Alexander | 2016-12-03 | 1 | -1/+1 |
| | | | | | PHPBB3-14492 | ||||
| * | [ticket/14492] Properly retrieve version updating from | Marc Alexander | 2016-12-03 | 2 | -52/+62 |
| | | | | | PHPBB3-14492 | ||||
| * | [ticket/14492] Rework logic for selecting which extensions to update | Marc Alexander | 2016-12-03 | 1 | -27/+54 |
| | | | | | PHPBB3-14492 | ||||
| * | [ticket/14492] Check if composer.json exists in viglink folder on file_check | Marc Alexander | 2016-12-03 | 1 | -1/+1 |
| | | | | | PHPBB3-14492 | ||||
| * | [ticket/14492] Define extensions to install in config not via cli argument | Marc Alexander | 2016-12-03 | 4 | -17/+13 |
| | | | | | PHPBB3-14492 | ||||
| * | [ticket/14492] Removed unused use statement | Marc Alexander | 2016-12-03 | 1 | -2/+0 |
| | | | | | PHPBB3-14492 | ||||
| * | [ticket/14492] Only show fail of extension install if it's available | Marc Alexander | 2016-12-03 | 1 | -4/+4 |
| | | | | | PHPBB3-14492 | ||||
| * | [ticket/14492] Allow specifying extensions to update & install | Marc Alexander | 2016-12-03 | 3 | -1/+33 |
| | | | | | PHPBB3-14492 | ||||
| * | [ticket/14492] Set install extensions to synthetic and fix step count | Marc Alexander | 2016-12-03 | 2 | -7/+2 |
| | | | | | PHPBB3-14492 | ||||
| * | [ticket/14492] Send statistics via ajax request | Marc Alexander | 2016-12-03 | 1 | -0/+1 |
| | | | | | | | | Flooding ajax requests will try to be prevented and sending stats without JS will also properly work. PHPBB3-14492 | ||||
| * | [ticket/14492] Apply fixes to update extensions task | Marc Alexander | 2016-12-03 | 2 | -4/+38 |
| | | | | | | | The regex was also simplified. PHPBB3-14492 | ||||
| * | [ticket/14492] Correctly check if extension was enabled during install | Marc Alexander | 2016-12-03 | 1 | -4/+38 |
| | | | | | | | | Also fixed some incorrectly generated log messages and improved the regex. PHPBB3-14492 | ||||
| * | [ticket/14492] Rename files to help_phpbb and fix css tabbing | Marc Alexander | 2016-12-03 | 1 | -0/+49 |
| | | | | | PHPBB3-14492 | ||||
| * | [ticket/14492] Do not install extensions in installer if in test env | Marc Alexander | 2016-12-03 | 1 | -0/+5 |
| | | | | | PHPBB3-14492 | ||||
| * | [ticket/14492] Re-enable extensions if updated during update | Marc Alexander | 2016-12-03 | 2 | -2/+163 |
| | | | | | PHPBB3-14492 | ||||
| * | [ticket/14492] Install all packaged extensions by default | Marc Alexander | 2016-12-03 | 1 | -15/+31 |
| | | | | | PHPBB3-14492 | ||||
| * | [ticket/14492] Do not copy viglink on update if it was deleted | Marc Alexander | 2016-12-03 | 1 | -0/+9 |
| | | | | | PHPBB3-14492 | ||||
| * | [ticket/14492] Add basic task for installing viglink extension | Marc Alexander | 2016-12-03 | 1 | -0/+119 |
| | | | | | PHPBB3-14492 | ||||
| * | Merge pull request #4405 from marc1706/ticket/14733 | Tristan Darricau | 2016-12-03 | 4 | -5/+75 |
| |\ | | | | | | | | | | | | | | | | | | | | | [ticket/14733] Support increasing hashing cost factor * marc1706/ticket/14733: [ticket/14733] Make sure detect_algorithm() works correctly and add tests [ticket/14733] Extend passwords driver_interface in rehashable_driver_interface [ticket/14733] Use new interface to preserve backwards compatibility [ticket/14733] Use default cost factor in bcrypt constructor [ticket/14733] Support increasing hashing cost factor | ||||
| | * | [ticket/14733] Make sure detect_algorithm() works correctly and add tests | Marc Alexander | 2016-10-03 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | detect_algorithm() returned array() if an algorithm prefix was more than 2 characters long. This might have been invalid for other prefixes. In order to correctly cope with other prefixes, another check for a backslash in the prefix definitino has been added. This was discovered while writing the tests for the newly added interface. PHPBB3-14733 | ||||
| | * | [ticket/14733] Extend passwords driver_interface in rehashable_driver_interface | Marc Alexander | 2016-10-03 | 2 | -54/+9 |
| | | | | | | | | | PHPBB3-14733 | ||||
| | * | [ticket/14733] Use new interface to preserve backwards compatibility | Marc Alexander | 2016-10-03 | 3 | -10/+79 |
| | | | | | | | | | PHPBB3-14733 | ||||
| | * | [ticket/14733] Use default cost factor in bcrypt constructor | Marc Alexander | 2016-10-03 | 1 | -1/+2 |
| | | | | | | | | | PHPBB3-14733 | ||||
| | * | [ticket/14733] Support increasing hashing cost factor | Marc Alexander | 2016-10-03 | 4 | -2/+47 |
| | | | | | | | | | PHPBB3-14733 | ||||
| * | | Merge pull request #4553 from DavidIQ/ticket/14885 | Tristan Darricau | 2016-12-03 | 1 | -1/+1 |
| |\ \ | | | | | | | | | | | | | | | | | | | | | | [ticket/14885] Add a line break when writing to the migrator output file * DavidIQ/ticket/14885: [ticket/14885] Use \n instead of \r for output_handler messages [ticket/14885] Add a line break when writing to the migrator output file | ||||
| | * | | [ticket/14885] Use \n instead of \r for output_handler messages | David Colón | 2016-12-02 | 1 | -1/+1 |
| | | | | |||||
| | * | | [ticket/14885] Add a line break when writing to the migrator output file | David Colón | 2016-12-02 | 1 | -1/+1 |
| | | | | |||||
| * | | | Merge pull request #4539 from marc1706/ticket/14875 | Tristan Darricau | 2016-12-03 | 6 | -36/+109 |
| |\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/14875] Add method for untrimmed input to ajax iohandler * marc1706/ticket/14875: [ticket/14875] Add raw_variable() to request mock [ticket/14875] Move raw_variable() method to request_interface [ticket/14875] Use raw_variable() method in _variable() to get raw data [ticket/14875] Add method for raw input to request and add to installer [ticket/14875] Add method for untrimmed input to ajax iohandler | ||||
| | * | | [ticket/14875] Move raw_variable() method to request_interface | Marc Alexander | 2016-12-02 | 4 | -23/+28 |
| | | | | | | | | | | | | | PHPBB3-14875 | ||||
| | * | | [ticket/14875] Use raw_variable() method in _variable() to get raw data | Marc Alexander | 2016-11-25 | 1 | -33/+6 |
| | | | | | | | | | | | | | | | | | | | | | | The raw_variable() method uses the same exact code the _variable method has been using until now. PHPBB3-14875 | ||||
| | * | | [ticket/14875] Add method for raw input to request and add to installer | Marc Alexander | 2016-11-25 | 5 | -24/+94 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A method for retrieving raw input has been added to the request class. This will be used in the installer to retrieve the datatabase password while also allowing utf8 characters. Not escaping the input is ok in this case as it won't be put anywhere in this raw form and only be used to populate the entry for the password field in config.php. PHPBB3-14875 | ||||
| | * | | [ticket/14875] Add method for untrimmed input to ajax iohandler | Marc Alexander | 2016-11-24 | 2 | -1/+26 |
| | | | | | | | | | | | | | | | | | | | | | | Due to the pre-encoded input and the escaping of the input, the string has to be decoded twice for the password. PHPBB3-14875 | ||||
| * | | | [ticket/14873] Added width/height attributes to smilies | JoshyPHP | 2016-11-27 | 1 | -1/+1 |
| | | | | | | | | | | | | | PHPBB3-14873 | ||||
| * | | | Merge branch '3.1.x' into 3.2.x | Marc Alexander | 2016-11-26 | 1 | -1/+1 |
| |\ \ \ | |/ / |/| | | |||||
| | * | | [ticket/14876] Allows multibyte strings for exception messages | Victor A. Safronov | 2016-11-25 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | All exception messages are sanitized via type_caster::set_var() which is called with $multibyte = false. This commit allows to pass multibyte messages as well. PHPBB3-14876 | ||||
| * | | | Merge pull request #4516 from marc1706/ticket/14867 | Tristan Darricau | 2016-11-24 | 1 | -6/+1 |
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/14867] Revert back to twig 1.26.* and update dependencies * marc1706/ticket/14867: [ticket/14867] Revert back to twig 1.26.* and update dependencies | ||||
| | * | | | [ticket/14867] Revert back to twig 1.26.* and update dependencies | Marc Alexander | 2016-11-16 | 1 | -6/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The revert of twig back to 1.26.* is necessary due to a breaking change in the way the Filesystem loader returns the paths to template files. PHPBB3-14867 | ||||
| * | | | | Merge remote-tracking branch 'senky/ticket/14739' into 3.2.x | Marc Alexander | 2016-11-17 | 6 | -671/+5 |
| |\ \ \ \ | |/ / / |/| | | | |||||
| | * | | | [ticket/14739] Remove SQLite 2.8.x database driver | Jakub Senko | 2016-11-16 | 6 | -671/+5 |
| | | | | | | | | | | | | | | | | | PHPBB3-14739 | ||||
| * | | | | Merge pull request #4501 from marc1706/ticket/14716 | Tristan Darricau | 2016-11-14 | 1 | -1/+6 |
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/14716] Update dependencies to latest versions * marc1706/ticket/14716: [ticket/14716] Update dependencies to latest versions | ||||
| | * | | | | [ticket/14716] Update dependencies to latest versions | Marc Alexander | 2016-11-03 | 1 | -1/+6 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This addresses some issues with symfony that resulted in issues when open_basedir restrictions were enabled, as well as issues with JPEG images in fast-image-size. The phpBB class extending the twig lexer also had to be modified to ensure compatibility after BC was broken by the PR https://github.com/twigphp/Twig/pull/2182 for twig 1.27. PHPBB3-14716 | ||||
