-
Bug
-
Resolution: Fixed
-
Minor
-
3.0.10-RC1, 3.0.10-RC2
-
None
3.0.10-RC1 language pack has introduced new language strings in language/en/install.php:
'INST_ERR_DB_INVALID_PREFIX'=> 'The prefix you entered is invalid. It must start with an alphanumeric character and must only contain alphanumeric characters, numbers and underscores.',
|
and
'TABLE_PREFIX_EXPLAIN' => 'The prefix must start with an alphanumeric character and must only contain alphanumeric characters, numbers and underscores.',
|
As numbers is a subset of alphanumeric characters, it's unneeded to point to it separately.
The strings would be:
'INST_ERR_DB_INVALID_PREFIX'=> 'The prefix you entered is invalid. It must start with an alphanumeric character and must only contain alphanumeric characters and underscores.',
|
and
'TABLE_PREFIX_EXPLAIN' => 'The prefix must start with an alphanumeric character and must only contain alphanumeric characters and underscores.',
|
- was caused by solution of
-
PHPBB-9066 Invalid Prefix Names Allowed
- Closed