aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | | | [ticket/11445] Remove unused foreach key $group_nameDhruv2014-06-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11445
| * | | | | | | | [ticket/11445] Improve unit tests for get_global_subscriptionsDhruv2014-06-011-0/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11445
| * | | | | | | | [ticket/11445] Optimize no of queries in get_global_subscriptionsDhruv2014-06-011-13/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-11445
* | | | | | | | | Merge pull request #2582 from bantu/ticket/12682Joas Schilling2014-06-131-10/+10
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/12682] Make Code Sniffer run properly on Travis CI again. * bantu/ticket/12682: [ticket/12682] Make Code Sniffer run properly on Travis CI again.
| * | | | | | | | | [ticket/12682] Make Code Sniffer run properly on Travis CI again.Andreas Fischer2014-06-131-10/+10
| | |/ / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The --ignore parameter takes a case-insensitive pattern and as such 'phpBB/phpbb/*' matches any '/home/travis/build/phpbb/phpbb/...' file name. This results in nothing being checked against ruleset-php-legacy.xml. Using absolute paths in the --ignore pattern fixes this issues. PHPBB3-12682
* | | | | | | | | Merge pull request #2570 from Nicofuma/ticket/12687Andreas Fischer2014-06-132-58/+70
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/12687] Add a constant to display the load time without DEBUG * Nicofuma/ticket/12687: [ticket/12687] Remove french spaces [ticket/12687] Display the number of cached queries [ticket/12687] Don't check if memory_get_peak_usage() exists [ticket/12687] Wrap $GLOBALS['starttime'] in a if [ticket/12687] Fix the namespace of $request [ticket/12687] Update doc block [ticket/12687] Use microtime(true) [ticket/12687] Remove globals [ticket/12687] Return a string and move the displaying of the sql report [ticket/12687] Rename DISPLAY_LOAD_TIME to PHPBB_DISPLAY_LOAD_TIME [ticket/12687] Display the explain link only when DEBUG is set [ticket/12687] Add a constant to display the load time without DEBUG
| * | | | | | | | [ticket/12687] Remove french spacesTristan Darricau2014-06-131-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12687
| * | | | | | | | [ticket/12687] Display the number of cached queriesTristan Darricau2014-06-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12687
| * | | | | | | | [ticket/12687] Don't check if memory_get_peak_usage() existsTristan Darricau2014-06-131-7/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12687
| * | | | | | | | [ticket/12687] Wrap $GLOBALS['starttime'] in a ifTristan Darricau2014-06-131-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12687
| * | | | | | | | [ticket/12687] Fix the namespace of $requestTristan Darricau2014-06-131-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12687
| * | | | | | | | [ticket/12687] Update doc blockTristan Darricau2014-06-121-3/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12687
| * | | | | | | | [ticket/12687] Use microtime(true)Tristan Darricau2014-06-121-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12687
| * | | | | | | | [ticket/12687] Remove globalsTristan Darricau2014-06-122-12/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12687
| * | | | | | | | [ticket/12687] Return a string and move the displaying of the sql reportTristan Darricau2014-06-122-16/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12687
| * | | | | | | | [ticket/12687] Rename DISPLAY_LOAD_TIME to PHPBB_DISPLAY_LOAD_TIMETristan Darricau2014-06-112-70/+59
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12687
| * | | | | | | | [ticket/12687] Display the explain link only when DEBUG is setTristan Darricau2014-06-102-12/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12687
| * | | | | | | | [ticket/12687] Add a constant to display the load time without DEBUGTristan Darricau2014-06-102-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12687
* | | | | | | | | Merge pull request #2580 from VSEphpbb/ticket/12697Joas Schilling2014-06-131-0/+1
|\ \ \ \ \ \ \ \ \ | |_|_|_|_|_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/12697] Delete cached extension schema.json files after testing * VSEphpbb/ticket/12697: [ticket/12697] Delete cached extension schema.json files after testing
| * | | | | | | | [ticket/12697] Delete cached extension schema.json files after testingMatt Friedman2014-06-121-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12697
* | | | | | | | | Merge pull request #2577 from marc1706/ticket/12694Dhruv Goel2014-06-111-1/+1
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | [ticket/12694] Remove whitespace at end of line from acp_groups
| * | | | | | | | | [ticket/12694] Remove whitespace at end of line from acp_groupsMarc Alexander2014-06-111-1/+1
|/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12694
* | | | | | | | | Merge remote-tracking branch 'github-marc1706/ticket/12352' into ↵Nils Adermann2014-06-1135-113/+1335
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | develop-ascraeus * github-marc1706/ticket/12352: (33 commits) [ticket/12352] Do not check hashes that don't have the necessary length [ticket/12352] Update file headers to fit new format [ticket/12352] Use custom provider collection for auth providers [ticket/12352] Add checks for existing user_pass_convert to migrations [ticket/12352] Remove usages of user_pass_convert column [ticket/12352] Update schema json file [ticket/12352] Remove user_pass_convert column from database [ticket/12352] Check each newly added passwords driver in manager_test [ticket/12352] Add get_settings_only method to passwords driver base [ticket/12352] Add passwords driver for xenforo 1.0, 1.1 passwords [ticket/12352] Add tests for wcf1 and wcf2 drivers [ticket/12352] Add driver for woltlab community framework 1 passwords [ticket/12352] Add driver for woltlab community framework 2 passwords [ticket/12352] Add missing $ to md5_mybb and md5_vb driver [ticket/12352] Fix spacing in passwords tests [ticket/12352] Add passwords driver for vB passwords [ticket/12352] Use correct hashing method in md5_mybb driver [ticket/12352] Add driver for myBB md5 passwords [ticket/12352] Rename phpbb2_md5 driver to fit filenames of other drivers [ticket/12352] Add passwords driver for sha1 password hashes ...
| * | | | | | | | [ticket/12352] Do not check hashes that don't have the necessary lengthMarc Alexander2014-06-027-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This should significantly reduce the time spent on checking hashes of passwords that should be converted. PHPBB3-12352
| * | | | | | | | [ticket/12352] Update file headers to fit new formatMarc Alexander2014-06-0112-65/+84
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12352
| * | | | | | | | [ticket/12352] Use custom provider collection for auth providersMarc Alexander2014-06-015-32/+73
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Using this custom provider collection, we can properly check whether the configured auth provider does exist. The method get_provider() has been added for returning the default auth provider or the standard db auth provider if the specified one does not exist. Additionally, the method get_provider() will throw an RuntimeException if none of the above exist. PHPBB3-12352
| * | | | | | | | [ticket/12352] Add checks for existing user_pass_convert to migrationsMarc Alexander2014-06-012-0/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12352
| * | | | | | | | [ticket/12352] Remove usages of user_pass_convert columnMarc Alexander2014-06-019-15/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12352
| * | | | | | | | [ticket/12352] Update schema json fileMarc Alexander2014-06-011-4/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12352
| * | | | | | | | [ticket/12352] Remove user_pass_convert column from databaseMarc Alexander2014-06-011-0/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12352
| * | | | | | | | [ticket/12352] Check each newly added passwords driver in manager_testMarc Alexander2014-06-011-16/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12352
| * | | | | | | | [ticket/12352] Add get_settings_only method to passwords driver baseMarc Alexander2014-06-0111-89/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12352
| * | | | | | | | [ticket/12352] Add passwords driver for xenforo 1.0, 1.1 passwordsMarc Alexander2014-06-013-0/+102
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12352
| * | | | | | | | [ticket/12352] Add tests for wcf1 and wcf2 driversMarc Alexander2014-06-011-0/+48
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12352
| * | | | | | | | [ticket/12352] Add driver for woltlab community framework 1 passwordsMarc Alexander2014-06-014-0/+77
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12352
| * | | | | | | | [ticket/12352] Add driver for woltlab community framework 2 passwordsMarc Alexander2014-06-014-0/+101
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12352
| * | | | | | | | [ticket/12352] Add missing $ to md5_mybb and md5_vb driverMarc Alexander2014-06-012-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12352
| * | | | | | | | [ticket/12352] Fix spacing in passwords testsMarc Alexander2014-06-012-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12352
| * | | | | | | | [ticket/12352] Add passwords driver for vB passwordsMarc Alexander2014-06-014-1/+104
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12352
| * | | | | | | | [ticket/12352] Use correct hashing method in md5_mybb driverMarc Alexander2014-06-012-2/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12352
| * | | | | | | | [ticket/12352] Add driver for myBB md5 passwordsMarc Alexander2014-06-014-0/+93
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12352
| * | | | | | | | [ticket/12352] Rename phpbb2_md5 driver to fit filenames of other driversMarc Alexander2014-06-014-13/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12352
| * | | | | | | | [ticket/12352] Add passwords driver for sha1 password hashesMarc Alexander2014-06-014-2/+211
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12352
| * | | | | | | | [ticket/12352] Check phpBB2 passwords that have been encrypted with phpassMarc Alexander2014-06-012-6/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12352
| * | | | | | | | [ticket/12352] Add tests for functions in convert password driverMarc Alexander2014-06-011-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12352
| * | | | | | | | [ticket/12352] Add tests for phpBB2 md5 passwords driverMarc Alexander2014-06-013-0/+63
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12352
| * | | | | | | | [ticket/12352] Add driver for phpBB2 hashes with md5 length of 32Marc Alexander2014-06-012-0/+127
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12352
| * | | | | | | | [ticket/12352] Remove code for converting passwords in db auth providerMarc Alexander2014-06-012-68/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12352
| * | | | | | | | [ticket/12352] Add $CP$ prefix to passwords that need to be convertedMarc Alexander2014-06-011-0/+75
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also set user_pass_convert to 0 in the process of doing so. PHPBB3-12352
| * | | | | | | | [ticket/12352] Use $CP$ prefix for converting passwords in managerMarc Alexander2014-06-011-12/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12352