diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-05-13 18:19:29 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-05-13 18:19:29 +0000 |
commit | 4e5872faa8f0fd3fddeba2aa7438a8c491ec58ec (patch) | |
tree | d5ed596aab1bd72d5702f66c148c63a5a8dee878 | |
parent | 0d7426a13d2503fc767b3e42f5b5933b85723379 (diff) | |
download | brdo-4e5872faa8f0fd3fddeba2aa7438a8c491ec58ec.tar.gz brdo-4e5872faa8f0fd3fddeba2aa7438a8c491ec58ec.tar.bz2 |
- Return to avoid warning message.
-rw-r--r-- | database/updates.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/database/updates.inc b/database/updates.inc index 7e437fd4f..454127a15 100644 --- a/database/updates.inc +++ b/database/updates.inc @@ -1081,6 +1081,7 @@ function update_86() { $ret[] = update_sql("INSERT INTO {users_roles} (uid, rid) SELECT uid, rid FROM {users}"); // TODO: should we verify the insert above worked before dropping rid? $ret[] = update_sql("ALTER TABLE {users} DROP rid"); + return $ret; } function update_sql($sql) { |