#58704, No table prefix in update_fix_access_table(), patch by Markus Petrux

4.7.x
Gerhard Killesreiter 2006-04-14 14:06:40 +00:00
parent a4fd2d666c
commit 9a142b1fd7
1 changed files with 1 additions and 1 deletions

View File

@ -597,7 +597,7 @@ function update_fix_access_table() {
}
// Convert access table to UTF-8 if needed.
$result = db_fetch_array(db_query('SHOW CREATE TABLE `access`'));
$result = db_fetch_array(db_query('SHOW CREATE TABLE {access}'));
if (!preg_match('/utf8/i', array_pop($result))) {
update_convert_table_utf8('access');
}