summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-01-06 07:12:24 +0000
committerDries Buytaert <dries@buytaert.net>2006-01-06 07:12:24 +0000
commita5e833b452ab42a5c1c2b7f89fb2f1c0550a6129 (patch)
treefd309a8d566e7783d1defad33556c00b0c63fb48
parent304e0b2977e0d9ec7a4853df2d239142e8207675 (diff)
downloadbrdo-a5e833b452ab42a5c1c2b7f89fb2f1c0550a6129.tar.gz
brdo-a5e833b452ab42a5c1c2b7f89fb2f1c0550a6129.tar.bz2
- Patch #39697 by Cvbge and Markus: critical bug: fixed upgrade path of drupal.module changes.
-rw-r--r--database/updates.inc8
1 files changed, 4 insertions, 4 deletions
diff --git a/database/updates.inc b/database/updates.inc
index ed21244e0..d4b440f3d 100644
--- a/database/updates.inc
+++ b/database/updates.inc
@@ -1349,7 +1349,7 @@ function system_update_166() {
switch ($GLOBALS['db_type']) {
case 'mysqli':
case 'mysql':
- update_sql("CREATE TABLE client (
+ $ret[] = update_sql("CREATE TABLE {client} (
cid int(10) unsigned NOT NULL auto_increment,
link varchar(255) NOT NULL default '',
name varchar(128) NOT NULL default '',
@@ -1363,7 +1363,7 @@ function system_update_166() {
changed int(11) NOT NULL default '0',
PRIMARY KEY (cid)
) TYPE=MyISAM");
- update_sql("CREATE TABLE client_system (
+ $ret[] = update_sql("CREATE TABLE {client_system} (
cid int(10) NOT NULL default '0',
name varchar(255) NOT NULL default '',
type varchar(255) NOT NULL default '',
@@ -1372,7 +1372,7 @@ function system_update_166() {
break;
case 'pgsql':
- update_sql("CREATE TABLE client (
+ $ret[] = update_sql("CREATE TABLE {client} (
cid SERIAL,
link varchar(255) NOT NULL default '',
name varchar(128) NOT NULL default '',
@@ -1386,7 +1386,7 @@ function system_update_166() {
changed integer NOT NULL default '0',
PRIMARY KEY (cid)
)");
- update_sql("CREATE TABLE client_system (
+ $ret[] = update_sql("CREATE TABLE {client_system} (
cid integer NOT NULL,
name varchar(255) NOT NULL default '',
type varchar(255) NOT NULL default '',