summaryrefslogtreecommitdiff
path: root/update.php
diff options
context:
space:
mode:
authorGerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org>2006-04-14 14:06:40 +0000
committerGerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org>2006-04-14 14:06:40 +0000
commit9a142b1fd77b8dc857f24c01415fe0271b1ca1eb (patch)
tree38209a74fec3550c0fc5f00a55ba912ae0fa0af8 /update.php
parenta4fd2d666c55132dcb490fddbfd024a056197790 (diff)
downloadbrdo-9a142b1fd77b8dc857f24c01415fe0271b1ca1eb.tar.gz
brdo-9a142b1fd77b8dc857f24c01415fe0271b1ca1eb.tar.bz2
#58704, No table prefix in update_fix_access_table(), patch by Markus Petrux
Diffstat (limited to 'update.php')
-rw-r--r--update.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/update.php b/update.php
index 8dcbf6a13..d3b332926 100644
--- a/update.php
+++ b/update.php
@@ -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');
}