-
Bug
-
Resolution: Fixed
-
Minor
-
3.0.9
-
None
-
None
$table_prefix = substr(CONFIG_TABLE, 0, -6); // strlen(config)
|
if (strlen($table_name . $index_name) - strlen($table_prefix) > 24)
|
{
|
$max_length = $table_prefix + 24;
|
trigger_error("Index name '{$table_name}_$index_name' on table '$table_name' is too long. The maximum is $max_length characters.", E_USER_ERROR);
|
}
|
$max_length = $table_prefix + 24;
|
Should be strlen($table_prefix) here.
- was caused by solution of
-
PHPBB-9892 Firebird index name length limit is not taken into account
- Closed