summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-05-26 18:48:00 +0000
committerDries Buytaert <dries@buytaert.net>2006-05-26 18:48:00 +0000
commit7828a1455ea3fb33f67a1470065e9fca2af2f097 (patch)
tree65f1135b694d7732d74fcd43a3905da61d945e6f
parent02fa0d85b2eaf2b25b8eff07a996def15f2f3929 (diff)
downloadbrdo-7828a1455ea3fb33f67a1470065e9fca2af2f097.tar.gz
brdo-7828a1455ea3fb33f67a1470065e9fca2af2f097.tar.bz2
- Added missing brackets.
-rw-r--r--database/updates.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/database/updates.inc b/database/updates.inc
index d641da08b..c5ebdb71d 100644
--- a/database/updates.inc
+++ b/database/updates.inc
@@ -2020,7 +2020,7 @@ function system_update_183() {
switch ($GLOBALS['db_type']) {
case 'mysql':
case 'mysqli':
- $ret[] = update_sql("CREATE TABLE blocks_roles (
+ $ret[] = update_sql("CREATE TABLE {blocks_roles} (
module varchar(64) NOT NULL,
delta varchar(32) NOT NULL,
rid int(10) unsigned NOT NULL,
@@ -2029,7 +2029,7 @@ function system_update_183() {
break;
case 'pgsql':
- $ret[] = update_sql("CREATE TABLE blocks_roles (
+ $ret[] = update_sql("CREATE TABLE {blocks_roles} (
module varchar(64) NOT NULL,
delta varchar(32) NOT NULL,
rid integer NOT NULL,