1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-22 00:21:02 +01:00

[ticket/14992] Correctly remove table name and prefix from keys

PHPBB3-14992
This commit is contained in:
Marc Alexander 2017-05-21 15:59:59 +02:00
parent 11f968e774
commit bcc85ab679
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995

View File

@ -947,7 +947,19 @@ class tools implements tools_interface
case 'oracle':
case 'sqlite3':
$index_name = $this->check_index_name_length($table_name, $table_name . '_' . $index_name, false);
$row[$col] = strpos($row[$col], $table_name) === 0 ? substr($row[$col], strlen($table_name) + 1) : $row[$col];
$table_prefix = substr(CONFIG_TABLE, 0, -6); // strlen(config)
if (strpos($index_name , $table_name) === false)
{
if (strpos($index_name, $table_prefix) !== false)
{
$row[$col] = substr($row[$col], strlen($table_prefix) + 1);
}
else
{
$row[$col] = substr($row[$col], strlen($table_name) + 1);
}
}
break;
}