From 9a142b1fd77b8dc857f24c01415fe0271b1ca1eb Mon Sep 17 00:00:00 2001
From: Gerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org>
Date: Fri, 14 Apr 2006 14:06:40 +0000
Subject: [PATCH] #58704, No table prefix in update_fix_access_table(), patch
 by Markus Petrux

---
 update.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/update.php b/update.php
index 8dcbf6a13934..d3b332926cc7 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');
   }
-- 
GitLab