aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/12761] Remove the execute bit from functions_user.phpn-aleha2014-06-231-0/+0
| | | | PHPBB3-12761
* Merge pull request #2629 from nickvergessen/ticket/12747Andreas Fischer2014-06-229-367/+0
|\ | | | | | | | | | | | | | | | | | | | | [ticket/12747] Drop support for Firebird * nickvergessen/ticket/12747: [ticket/12747] Remove some methods which are not used anymore [ticket/12747] Drop support for Firebird Conflicts: phpBB/phpbb/db/driver/firebird.php
| * [ticket/12747] Drop support for FirebirdJoas Schilling2014-06-209-367/+0
| | | | | | | | PHPBB3-12747
* | Merge pull request #2591 from rxu/ticket/12704Joas Schilling2014-06-221-2/+2
|\ \ | | | | | | | | | | | | | | | | | | [ticket/12704] Improve the load time information in the footer when enabled * rxu/ticket/12704: [ticket/12704] Improve the load time information in the footer when enabled
| * | [ticket/12704] Improve the load time information in the footer when enabledrxu2014-06-201-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | PR #2570 has added new constant to display load time information without debug mode is being on (https://tracker.phpbb.com/browse/PHPBB3-12687). This patch expands the total load time info with SQL/PHP load times, while hiding the additional info with <abbr> element. PHPBB3-12704
* | | Merge pull request #2575 from lucifer4o/ticket/12691Joas Schilling2014-06-221-1/+13
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/12691] Add core.delete_pm to funtion delete_pm * lucifer4o/ticket/12691: [ticket/12691] Comment change [ticket/12691] Change event to core.delete_pm_before [ticket/12691] Add core.delete_pm to funtion delete_pm
| * | | [ticket/12691] Comment changeStanislav Atanasov2014-06-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Change a bit the core event comment PHPBB3-12691
| * | | [ticket/12691] Change event to core.delete_pm_beforeStanislav Atanasov2014-06-221-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | Just a requested change by nickvergessen PHPBB3-12691
| * | | [ticket/12691] Add core.delete_pm to funtion delete_pmStanislav Atanasov2014-06-221-1/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add core.delete_pm to funtion delete_pm. Event will return: int $user_id - ID of the user requested the message delete array $msg_ids - array of all messages to be deleted int $folder_id - ID of the user folder where the messages are stored Justification: Allow extensions to capture this event and act as intended by ext author PHPBB3-12691
* | | | Merge pull request #2586 from lucifer4o/ticket/12701Joas Schilling2014-06-221-1/+16
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [Ticket/12701] Add events to user_add function * lucifer4o/ticket/12701: [ticket/12701] Add change [ticket/12701] Rmove before event and expand modify_data [ticket/12701] Add events to user_add function
| * | | | [ticket/12701] Add changeStanislav Atanasov2014-06-221-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change back to since Add change PHPBB3-12701
| * | | | [ticket/12701] Rmove before event and expand modify_dataStanislav Atanasov2014-06-221-13/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removing core.user_add_before Adding $user_row and $cp_data to core.user_add_modify_data PHPBB3-12701
| * | | | [ticket/12701] Add events to user_add functionStanislav Atanasov2014-06-221-0/+23
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add two new events to user_add function in ./includes/functions_user.php. core.user_add_before - allow modification of submitted to function data. Returns: @var array $user_row - user_row array - User array @var array $cp_data - cp_data array - CPF array core.user_add_after - return user_id, user_row and cp_data after user registration Returns: @var int $user_id - user_id of the new user @var array $user_row - user_row array - User array @var array $cp_data - cp_data array - CPF array Justification: Allow extensions to parse data before and after creation of the user. PHPBB3-12701
* | | | Merge pull request #2530 from PayBas/ticket/12646Joas Schilling2014-06-221-0/+4
|\ \ \ \ | |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/12646] Add data-# attribute to breadcrumb links * PayBas/ticket/12646: [ticket/12646] Changed to navlinks.MICRODATA [ticket/12646] Add check for navlinks.FORUM_ID [ticket/12646] Changed index/home data attr & updated subsilver [ticket/12646] Add data-f attribute to breadcrumb links
| * | | [ticket/12646] Changed to navlinks.MICRODATAPayBas2014-06-101-0/+4
| | | | | | | | | | | | | | | | PHPBB3-12646
* | | | [ticket/12723] Add Sniff ensuring PHP files use the correct file headerTristan Darricau2014-06-222-6/+15
| |_|/ |/| | | | | | | | PHPBB3-12723
* | | Merge pull request #2566 from marc1706/ticket/11711Joas Schilling2014-06-201-0/+9
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ticket/11711] Inform user of unsupported characters while posting * marc1706/ticket/11711: [ticket/11711] Improve coding and comments of character check [ticket/11711] Reduce size of tests and also test topic titles [ticket/11711] Improve checks for unsupported characters and check subject [ticket/11711] Inform user of unsupported characters while posting
| * | | [ticket/11711] Improve coding and comments of character checkMarc Alexander2014-06-101-1/+1
| | | | | | | | | | | | | | | | PHPBB3-11711
| * | | [ticket/11711] Improve checks for unsupported characters and check subjectMarc Alexander2014-06-091-7/+3
| | | | | | | | | | | | | | | | PHPBB3-11711
| * | | [ticket/11711] Inform user of unsupported characters while postingMarc Alexander2014-06-091-0/+13
| | | | | | | | | | | | | | | | PHPBB3-11711
* | | | Merge pull request #2588 from nickvergessen/ticket/12705Dhruv Goel2014-06-171-7/+10
|\ \ \ \ | | | | | | | | | | Ticket/12705 Fix make_clickable when called with different server_urls
| * | | | [ticket/12705] Store the regular expression matches based on server_urlJoas Schilling2014-06-141-7/+10
| | |_|/ | |/| | | | | | | | | | PHPBB3-12705
* | | | [ticket/12721] Update rules descriptionsTristan Darricau2014-06-161-1/+0
| | | | | | | | | | | | | | | | PHPBB3-12721
* | | | [ticket/12721] Add Squiz.ControlStructures.ForLoopDeclaration in legacyTristan Darricau2014-06-161-1/+1
| | | | | | | | | | | | | | | | PHPBB3-12721
* | | | [ticket/12721] Add Squiz.ControlStructures.ElseIfDeclaration in legacyTristan Darricau2014-06-163-3/+4
| | | | | | | | | | | | | | | | PHPBB3-12721
* | | | [ticket/12721] Add Squiz.Arrays.ArrayBracketSpacing in the legacy rulesetTristan Darricau2014-06-161-1/+1
| | | | | | | | | | | | | | | | PHPBB3-12721
* | | | [ticket/12722] Add Generic.Formatting.SpaceAfterCast in the legacy rulesetTristan Darricau2014-06-166-19/+19
| | | | | | | | | | | | | | | | PHPBB3-12722
* | | | [ticket/12724] Add Squiz.PHP.Eval in the legacy rulesetTristan Darricau2014-06-162-0/+4
| | | | | | | | | | | | | | | | PHPBB3-12724
* | | | Merge pull request #2431 from Nicofuma/ticket/12109Dhruv Goel2014-06-151-8/+16
|\ \ \ \ | | | | | | | | | | [ticket/12109] Bug when setting permissions with "Select all users"
| * | | | [ticket/12109] Fix coding styleTristan Darricau2014-05-101-4/+4
| | | | | | | | | | | | | | | | | | | | PHPBB3-12109
| * | | | [ticket/12109] Bug when setting permissions with "Select all users"Tristan Darricau2014-05-101-8/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://tracker.phpbb.com/browse/PHPBB3-12109 PHPBB3-12109
* | | | | [ticket/12707] Do not try to load 3.1 DBMS driver name as 3.0 driver.Andreas Fischer2014-06-141-1/+1
| |/ / / |/| | | | | | | | | | | PHPBB3-12707
* | | | 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
* | | | | [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-114-4/+2
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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] Use custom provider collection for auth providersMarc Alexander2014-06-011-9/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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] Remove usages of user_pass_convert columnMarc Alexander2014-06-013-3/+0
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-12352
| * | | | | [ticket/12352] Revert to db auth provider if default does not existMarc Alexander2014-06-011-1/+10
| | |_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This will make sure that we will not encounter a non-existing auth provider. We will revert to the default db auth provider if the one set in the config does not exist in our auth provider collection. PHPBB3-12352