| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|\
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* prep-release-3.0.12:
[prep-release-3.0.12] Bumping version number for 3.0.12 final.
Conflicts:
phpBB/includes/constants.php
phpBB/install/database_update.php
phpBB/install/schemas/schema_data.sql
|
| | |
|
|\ \
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* prep-release-3.0.12:
[prep-release-3.0.12] Update Changelog for 3.0.12-RC3 release.
[prep-release-3.0.12] Bumping version number for 3.0.12-RC3.
Conflicts:
phpBB/includes/constants.php
phpBB/install/database_update.php
phpBB/install/schemas/schema_data.sql
|
| | |
|
|\ \
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* prep-release-3.0.12:
[prep-release-3.0.12] Update Changelog for 3.0.12-RC2 release.
[prep-release-3.0.12] Bumping version number for 3.0.12-RC2.
Conflicts:
phpBB/includes/constants.php
phpBB/install/database_update.php
phpBB/install/schemas/schema_data.sql
|
| | |
|
|/ |
|
| |
|
|
|
|
|
|
|
| |
To fix http://tracker.phpbb.com/browse/PHPBB3-8319 we changed the
second_pass_replace value, so that needs updating for existing ones.
PHPBB3-8319
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Due to a bug, vanilla phpbb could not create captcha tables in 3.0.8 on
firebird. It was possible for board administrators to adjust the code to
work. If code was manually adjusted by board administrators, index names
would not be the same as what 3.0.9 and newer expect. This code fragment
drops captcha tables, destroying all entered Q&A captcha configuration,
such that when Q&A is configured next the respective tables will be
created with corrent index names.
If you wish to preserve your Q&A captcha configuration, you can manually
rename indexes to the currently expected name:
phpbb_captcha_questions_lang_iso => phpbb_captcha_question_lang
phpbb_captcha_answers_question_id => phpbb_captcha_answers_qid
Again, this needs to be done only if a board was manually modified to fix
broken captcha code.
PHPBB3-11278
|
|
|
|
|
|
|
|
| |
The db_tools class is running in return mode, which means that the queries
are not run, but just returned. Therefor the broken tables were not
removed from the database.
PHPBB3-11278
|
|
|
|
| |
PHPBB3-10184
|
|
|
|
| |
PHPBB3-10184
|
|\
| |
| |
| |
| | |
* bantu/ticket/11178:
[ticket/11178] Do not set error_reporting to E_ALL in database_updater.php
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Take whatever startup.php sets instead.
This especially takes care of E_STRICT messages that are generated because of
PHP4 compatibility.
PHPBB3-11178
|
| |
| |
| |
| | |
PHPBB3-10897
|
| |
| |
| |
| | |
PHPBB3-10897
|
| |
| |
| |
| | |
PHPBB3-10897
|
| |
| |
| |
| | |
PHPBB3-10897
|
| |
| |
| |
| | |
PHPBB3-10897
|
| |
| |
| |
| | |
PHPBB3-10897
|
| |
| |
| |
| | |
PHPBB3-10897
|
| |
| |
| |
| | |
PHPBB3-10897
|
| |
| |
| |
| | |
PHPBB3-10897
|
|/
|
|
| |
PHPBB3-10897
|
|
|
|
| |
PHPBB3-11158
|
|
|
|
| |
PHPBB3-11135
|
|\
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* prep-release-3.0.11:
[prep-release-3.0.11] Bumping version number for 3.0.11 final.
Conflicts:
phpBB/includes/constants.php
phpBB/install/database_update.php
phpBB/install/schemas/schema_data.sql
|
| | |
|
|\ \
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* prep-release-3.0.11:
[prep-release-3.0.11] Update Changelog for 3.0.11-RC2 release.
[prep-release-3.0.11] Bumping version number for 3.0.11-RC2.
Conflicts:
phpBB/includes/constants.php
phpBB/install/database_update.php
phpBB/install/schemas/schema_data.sql
|
| | |
|
|\ \
| |/
| |
| |
| |
| | |
* prep-release-3.0.11:
[ticket/10965] Database update was referring to 3.0.5 instead of 3.0.11-RC1
[ticket/10965] Introduce a new profile field option to display no value
|
| |
| |
| |
| | |
PHPBB3-10965
|
| |
| |
| |
| |
| |
| |
| |
| | |
By default the 3.0.10 behaviour is kept, profile fields will not show up
if they have either not yet been selected or in case of an optional
dropdown field if the novalue option was selected.
PHPBB3-10965
|
|/ |
|
| |
|
|\
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* ticket/10605:
[ticket/10605] Use database updater function _sql() instead of $db->sql_query()
[ticket/10605] Put end of array on its own line because start of array is too.
[ticket/10605] Add parameter documentation to phpbb_delete_user_pms
[ticket/10605] Fix left join usage.
[ticket/10605] Add a section for updating from 3.0.10 to schema updates.
[ticket/10605] Fix syntax error in database updater.
[ticket/10605] Reset userĀ“s pm count to 0 when deleting his PMs
[ticket/10605] Split query to be able to use indexes
[ticket/10605] Rename $delete_rows to $delete_ids.
[ticket/10605] Break long comment into multiple lines 80 chars short.
[ticket/10605] Remove unnecessary $delete_ids array.
[ticket/10605] Remove unnecessary array_keys calls on $delete_rows.
[ticket/10605] Remove unused variable declarations.
[ticket/10605] Turn $undelivered_user into a real array of counters.
[ticket/10605] Use unset() instead of checking user_id over and over again.
[ticket/10605] Prefix function with phpbb_ and use true instead of 1
[ticket/10605] Delete orphan private messages on update
[ticket/10605] Check for orphan privmsgs when deleting a user
Conflicts:
phpBB/install/database_update.php
|
| |
| |
| |
| | |
PHPBB3-10605
|
| |
| |
| |
| | |
PHPBB3-10605
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Previously this produced broken SQL:
SELECT p.msg_id FROM phpbb_privmsgs p
LEFT JOIN 0 phpbb_privmsgs_to ON (p.msg_id = t.msg_id)
WHERE t.user_id IS NULL LIMIT 500 OFFSET 0
PHPBB3-10605
|
| |
| |
| |
| |
| |
| | |
Without it data updates do not appear to be run.
PHPBB3-10605
|
| |
| |
| |
| | |
PHPBB3-10605
|
| |
| |
| |
| | |
PHPBB3-10605
|
| |
| |
| |
| |
| |
| | |
Substituted $db->sql_query() with _sql()
PHPBB3-10561
|
| |
| |
| |
| | |
PHPBB3-10561
|
| |
| |
| |
| | |
PHPBB3-10561
|
| |
| |
| |
| |
| |
| | |
Changes made to function name, reverted to old.
PHPBB3-10561
|
| |
| |
| |
| |
| |
| | |
Updates made to database_update.php
PHPBB3-10561
|
|/
|
|
|
|
|
| |
Added section to check for existing users using a
deactivated style, and revert it to default style.
PHPBB3-10561
|