diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-01-06 03:08:52 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-01-06 03:08:52 +0000 |
commit | 304e0b2977e0d9ec7a4853df2d239142e8207675 (patch) | |
tree | 7efe963f09ae354a3b51fbbf2722ad991ed05b69 | |
parent | 030fd1798a20e15d7275e5742462c2af822a5f63 (diff) | |
download | brdo-304e0b2977e0d9ec7a4853df2d239142e8207675.tar.gz brdo-304e0b2977e0d9ec7a4853df2d239142e8207675.tar.bz2 |
- MySQL-update needs to use 'mysql' or 'mysqli'
-rw-r--r-- | database/updates.inc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/database/updates.inc b/database/updates.inc index cfdce0df4..ed21244e0 100644 --- a/database/updates.inc +++ b/database/updates.inc @@ -1281,7 +1281,7 @@ function system_update_162() { function system_update_163() { $ret = array(); - if ($GLOBALS['db_type'] == 'mysql') { + if ($GLOBALS['db_type'] == 'mysql' || $GLOBALS['db_type'] == 'mysqli') { $ret[] = update_sql('ALTER TABLE {cache} CHANGE data data LONGBLOB'); } return $ret; @@ -1397,5 +1397,3 @@ function system_update_166() { return $ret; } - - |