-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 3.0.10-RC1, 3.0.10-RC2
-
Fix Version/s: 3.0.10-RC3
-
Component/s: Language pack
-
Labels: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
-
PHPBB3-9066 Invalid Prefix Names Allowed
-
- Closed
-