aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/11015] Add BC files for the driversIgor Wiedler2012-07-219-0/+171
| | | | PHPBB3-11015
* [ticket/11015] Make DBAL classes autoloadableIgor Wiedler2012-07-2120-1154/+1099
| | | | | | | | PHPBB3-11015 This allows us to just create the object without having to include the driver first. However, it also means that users must specify the full class name in config.php
* Merge branch 'develop-olympus' into developNils Adermann2012-07-212-84/+123
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/10950] Fix grammar in comments [ticket/10950] Delete PMs for users that have not yet read the pm [ticket/10950] Fix unit tests to fit the new pm deleting behaviour [ticket/10950] Update undelivered pm counts in batches not 1 by 1 for each user [ticket/10950] Remove deleted entries in tests instead of commenting them out [ticket/10950] Use database count() and group by instead of doing that in php [ticket/10950] Check $delete_ids to be not empty [ticket/10950] Recreated the behaviour of phpbb_delete_user_pms() [ticket/10950] Fix unit tests to reflect desired behaviour [ticket/10950] Add some first and simple unit tests for phpbb_delete_user_pms() [ticket/10950] Correct comment for the second query. [ticket/10950] Add empty line to make unset() call more visible. [ticket/10950] Select the correct columns in SQL queries. [ticket/10950] Use a variable for the private message id. [ticket/10950] Move array initialisation to the front. [ticket/10950] Remove redundant if statement. [ticket/10950] Fix SQL coding style (indentation) in second SQL query. [ticket/10950] Use proper ' in order to fix comment.
| * Merge branch 'prep-release-3.0.11' into develop-olympusNils Adermann2012-07-212-84/+123
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * prep-release-3.0.11: [ticket/10950] Fix grammar in comments [ticket/10950] Delete PMs for users that have not yet read the pm [ticket/10950] Fix unit tests to fit the new pm deleting behaviour [ticket/10950] Update undelivered pm counts in batches not 1 by 1 for each user [ticket/10950] Remove deleted entries in tests instead of commenting them out [ticket/10950] Use database count() and group by instead of doing that in php [ticket/10950] Check $delete_ids to be not empty [ticket/10950] Recreated the behaviour of phpbb_delete_user_pms() [ticket/10950] Fix unit tests to reflect desired behaviour [ticket/10950] Add some first and simple unit tests for phpbb_delete_user_pms() [ticket/10950] Correct comment for the second query. [ticket/10950] Add empty line to make unset() call more visible. [ticket/10950] Select the correct columns in SQL queries. [ticket/10950] Use a variable for the private message id. [ticket/10950] Move array initialisation to the front. [ticket/10950] Remove redundant if statement. [ticket/10950] Fix SQL coding style (indentation) in second SQL query. [ticket/10950] Use proper ' in order to fix comment.
| | * Merge remote-tracking branch 'github-nickvergessen/ticket/10950' into ↵Nils Adermann2012-07-212-84/+123
| | |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | prep-release-3.0.11 * github-nickvergessen/ticket/10950: [ticket/10950] Fix grammar in comments [ticket/10950] Delete PMs for users that have not yet read the pm [ticket/10950] Fix unit tests to fit the new pm deleting behaviour [ticket/10950] Update undelivered pm counts in batches not 1 by 1 for each user [ticket/10950] Remove deleted entries in tests instead of commenting them out [ticket/10950] Use database count() and group by instead of doing that in php [ticket/10950] Check $delete_ids to be not empty [ticket/10950] Recreated the behaviour of phpbb_delete_user_pms() [ticket/10950] Fix unit tests to reflect desired behaviour [ticket/10950] Add some first and simple unit tests for phpbb_delete_user_pms() [ticket/10950] Correct comment for the second query. [ticket/10950] Add empty line to make unset() call more visible. [ticket/10950] Select the correct columns in SQL queries. [ticket/10950] Use a variable for the private message id. [ticket/10950] Move array initialisation to the front. [ticket/10950] Remove redundant if statement. [ticket/10950] Fix SQL coding style (indentation) in second SQL query. [ticket/10950] Use proper ' in order to fix comment.
| | | * [ticket/10950] Fix grammar in commentsJoas Schilling2012-07-201-3/+3
| | | | | | | | | | | | | | | | PHPBB3-10950
| | | * [ticket/10950] Delete PMs for users that have not yet read the pmJoas Schilling2012-07-202-33/+45
| | | | | | | | | | | | | | | | PHPBB3-10950
| | | * [ticket/10950] Update undelivered pm counts in batches not 1 by 1 for each userJoas Schilling2012-07-161-5/+18
| | | | | | | | | | | | | | | | PHPBB3-10950
| | | * [ticket/10950] Use database count() and group by instead of doing that in phpJoas Schilling2012-07-111-11/+5
| | | | | | | | | | | | | | | | PHPBB3-10950
| | | * [ticket/10950] Check $delete_ids to be not emptyJoas Schilling2012-07-041-19/+22
| | | | | | | | | | | | | | | | PHPBB3-10950
| | | * [ticket/10950] Recreated the behaviour of phpbb_delete_user_pms()Joas Schilling2012-07-041-58/+74
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Get delete_ids, pms of the user as receipt - Get undelivered_msg, pms of the user as sender - Delete undelivered_msg, if there are only NO_BOX, OUTBOX and SENTBOX links - Correct the _new and _unread user values for the receipts - Delete delete_ids, if there are no links to them anymore - Reset _new and _unread values for the user we delete PHPBB3-10950
| | | * [ticket/10950] Correct comment for the second query.Andreas Fischer2012-06-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Only undelivered messages are handled. PHPBB3-10950
| | | * [ticket/10950] Add empty line to make unset() call more visible.Andreas Fischer2012-06-231-0/+1
| | | | | | | | | | | | | | | | PHPBB3-10950
| | | * [ticket/10950] Select the correct columns in SQL queries.Andreas Fischer2012-06-231-2/+2
| | | | | | | | | | | | | | | | PHPBB3-10950
| | | * [ticket/10950] Use a variable for the private message id.Andreas Fischer2012-06-231-6/+8
| | | | | | | | | | | | | | | | PHPBB3-10950
| | | * [ticket/10950] Move array initialisation to the front.Andreas Fischer2012-06-231-1/+2
| | | | | | | | | | | | | | | | PHPBB3-10950
| | | * [ticket/10950] Remove redundant if statement.Andreas Fischer2012-06-231-12/+9
| | | | | | | | | | | | | | | | | | | | | | | | We already know author_id and folder_id. PHPBB3-10950
| | | * [ticket/10950] Fix SQL coding style (indentation) in second SQL query.Andreas Fischer2012-06-231-1/+1
| | | | | | | | | | | | | | | | PHPBB3-10950
| | | * [ticket/10950] Use proper ' in order to fix comment.Andreas Fischer2012-06-231-1/+1
| | | | | | | | | | | | | | | | PHPBB3-10950
* | | | [ticket/11008] Change onunload_functions to not use eval()Igor Wiedler2012-07-216-8/+12
| | | | | | | | | | | | | | | | PHPBB3-11008
* | | | [ticket/11008] Remove eval() calls to get document[id]Igor Wiedler2012-07-214-20/+4
| | | | | | | | | | | | | | | | PHPBB3-11008
* | | | Merge branch 'develop-olympus' into developNils Adermann2012-07-191-29/+40
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/10441] Make CDB linking more consistent [ticket/10441] Typo [ticket/10441] Update to docs/README.html Conflicts: phpBB/docs/README.html
| * | | Merge branch 'prep-release-3.0.11' into develop-olympusNils Adermann2012-07-191-30/+37
| |\ \ \ | | |/ / | | | | | | | | | | | | | | | | | | | | * prep-release-3.0.11: [ticket/10441] Make CDB linking more consistent [ticket/10441] Typo [ticket/10441] Update to docs/README.html
| | * | Merge remote-tracking branch 'github-noxwizard/ticket/10441' into ↵Nils Adermann2012-07-191-30/+37
| | |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | prep-release-3.0.11 * github-noxwizard/ticket/10441: [ticket/10441] Make CDB linking more consistent [ticket/10441] Typo [ticket/10441] Update to docs/README.html
| | | * | [ticket/10441] Make CDB linking more consistentPatrick Webster2012-07-021-5/+5
| | | | | | | | | | | | | | | | | | | | PHPBB3-10441
| | | * | [ticket/10441] TypoPatrick Webster2012-06-291-1/+1
| | | | | | | | | | | | | | | | | | | | PHPBB3-10441
| | | * | [ticket/10441] Update to docs/README.htmlOyabun12012-06-291-28/+35
| | | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updated information about styles, languages, and MODs Added a section about the Knowledge Base. Various phrase changes. PHPBB3-10441
* | | | Merge pull request #843 from nickvergessen/feature/new-tz-handlingNils Adermann2012-07-1947-280/+877
|\ \ \ \ | | | | | | | | | | Feature/new tz handling
| * | | | [feature/new-tz-handling] Don't use global user but make it a parameterJoas Schilling2012-07-195-8/+11
| | | | | | | | | | | | | | | | | | | | PHPBB3-9558
| * | | | [feature/new-tz-handling] Fix size of suggestion button in chromeJoas Schilling2012-07-191-1/+1
| | | | | | | | | | | | | | | | | | | | PHPBB3-9558
| * | | | [feature/new-tz-handling] Fall back to UTC, if the timezone is invalidJoas Schilling2012-07-192-2/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This should avoid problems, when the board files are updated but database isn't. PHPBB3-9558
| * | | | [feature/new-tz-handling] Add previous selected value to validation if validJoas Schilling2012-07-192-5/+39
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We also add the selected timezone if we can create an object with it. DateTimeZone::listIdentifiers seems to not add all identifiers to the list, because some are only kept for backward compatible reasons. If the user has a deprecated value, we add it here, so it can still be kept. Once the user changed his value, there is no way back to deprecated values. PHPBB3-9558
| * | | | [feature/new-tz-handling] Display suggestion when a different value is selectedJoas Schilling2012-07-192-2/+10
| | | | | | | | | | | | | | | | | | | | PHPBB3-9558
| * | | | [feature/new-tz-handling] Remove additional marking of selected itemsJoas Schilling2012-07-182-3/+2
| | | | | | | | | | | | | | | | | | | | PHPBB3-9558
| * | | | [feature/new-tz-handling] Move update helper function to new classJoas Schilling2012-07-182-101/+116
| | | | | | | | | | | | | | | | | | | | PHPBB3-9558
| * | | | [feature/new-tz-handling] Delete old variable which is not used anymoreJoas Schilling2012-07-181-3/+0
| | | | | | | | | | | | | | | | | | | | PHPBB3-9558
| * | | | [feature/new-tz-handling] Rename $user->tz back to $user->timezoneJoas Schilling2012-07-185-13/+13
| | | | | | | | | | | | | | | | | | | | PHPBB3-9558
| * | | | [feature/new-tz-handling] Remove "timezone might be numeric"Joas Schilling2012-07-182-11/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As we updated all of the used values, there really shouldn't be one anymore. PHPBB3-9558
| * | | | [feature/new-tz-handling] Add function to update the timezoneJoas Schilling2012-07-181-0/+99
| | | | | | | | | | | | | | | | | | | | PHPBB3-9558
| * | | | [feature/new-tz-handling] Correctly update user and board timezones on updateJoas Schilling2012-07-181-19/+18
| | | | | | | | | | | | | | | | | | | | PHPBB3-9558
| * | | | Merge branch 'develop' of git://github.com/phpbb/phpbb3 into ↵Joas Schilling2012-07-1857-218/+1552
| |\ \ \ \ | | | | | | | | | | | | | | | | | | feature/new-tz-handling
| * | | | | [feature/new-tz-handling] Properly name new timezone selection functionJoas Schilling2012-07-175-20/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Marked the old one as deprecated and made it using the new function. PHPBB3-9558
| * | | | | [feature/new-tz-handling] Use tmp variable for user timezoneJoas Schilling2012-07-161-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9558
| * | | | | [feature/new-tz-handling] Allow phpbb prefix for user data validation functionsJoas Schilling2012-07-161-4/+15
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9558
| * | | | | [feature/new-tz-handling] Require user argument on phpbb_datetimeJoas Schilling2012-07-163-8/+7
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9558
| * | | | | [feature/new-tz-handling] Fix code and doc layoutJoas Schilling2012-06-202-4/+8
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9558
| * | | | | [feature/new-tz-handling] Readd Database updater changes from OlegJoas Schilling2012-06-201-0/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The change here converts user_timezone to vchar and computes timezone identifiers from the offsets. It uses database-specific functions for building SQL conditionals and concatenations which need to be implemented, probably in a separate ticket. As a result the current code is not functional. The changes are tricky since we need to drop user_dst column from users table, but we need it during the data migration process to properly calculate effective timezones for all users. PHPBB3-9558
| * | | | | [feature/new-tz-handling] Fix docs in phpbb_user classJoas Schilling2012-06-201-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9558
| * | | | | [feature/new-tz-handling] Prefix function with phpbb_Joas Schilling2012-06-191-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9558
| * | | | | [feature/new-tz-handling] Trim comment length and remove leading underscoresJoas Schilling2012-06-191-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-9558