We need to rename the index key because with the default prefix (phpbb_)
this key has a length of 31. And because we don't accept the keys longer
than 30 characters we should ensure that by default no key is longer than
30 characters.
PHPBB3-12873
[ticket/12663] Extract CLI language string into their own file
* bantu/ticket/12663:
[ticket/12663] Have cli.php language file at top level; unrelated to ACP.
[ticket/12663] Extract CLI language string into their own file
[ticket/12685] New CLI container for load extensions
* carlo94it/ticket/12685:
[ticket/12685] Setup class loader for extensions only if not in safe mode
[ticket/12685] Replace getParameterOption with hasParameterOption
[ticket/12685] Do not dump container
[ticket/12685] Override getDefaultInputDefinition()
[ticket/12685] Removed unused USE statement
[ticket/12685] Inject console.command_collection instead of the container
[ticket/12685] Add a new line
[ticket/12685] Container is dumped by default
[ticket/12685] Removed spaces
[ticket/12685] Add --safe-mode
[ticket/12685] We need extensions enabled
[ticket/12685] Add space after foreach
[ticket/12685] Add console collection and fixing CLI
[WIP][ticket/12853] Change navbar ACP from skip- to last-responsive
* PayBas/ticket/12853:
[ticket/12853] Change navbar ACP from skip- to last-responsive
[ticket/12837] Detect "viewing contact admin page" on viewonline
* PayBas/ticket/12837:
[ticket/12837] Use else if instead of elseif
[ticket/12837] Detect "viewing contact admin page" on viewonline
[ticket/12854] Don't show contact page link if board emails are disabled
* Elsensee/ticket/12854:
[ticket/12854] Don't show contact page link if board emails are disabled
[ticket/12855] Dump the container based on DEBUG_CONTAINER instead of DEBUG
* Elsensee/ticket/12855:
[ticket/12855] Dump the container based on DEBUG_CONTAINER instead of DEBUG
Add common core event at the bottom of the includes/ucp/ucp_prefs.php
to allow additional actions (like template variable assignments etc.)
before the page load.
PHPBB3-12828
[ticket/12844] Don't clear $dbpasswd early in connection manager
* Nicofuma/ticket/12844:
[ticket/12844] Don't clear $dbpasswd early in connection manager
Using profilefield_base_migration.php to create a custom profile
field with SQlite3 DBMS returns warning:
[phpBB Debug] PHP Warning: in file [ROOT]/phpbb/db/driver/sqlite3.php
on line 218: SQLite3Result::fetchArray(): Unable to execute statement:
constraint failed
This is due passing filed_id and lang_id to the DB driver in
unspecified format. As they are always int we should cast them
in int to prevent the error message appearance.
PHPBB3-12846