summaryrefslogtreecommitdiff
path: root/database
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-11-18 14:05:38 +0000
committerDries Buytaert <dries@buytaert.net>2005-11-18 14:05:38 +0000
commit6a7e45d0087f7cedb1e73f0c390484cfed1de472 (patch)
treeb10f9e43b3ff972b18e3e22a65d2bee57af50501 /database
parent5b4ebcdb25b25943c11921c9ee8b9904ef655cfd (diff)
downloadbrdo-6a7e45d0087f7cedb1e73f0c390484cfed1de472.tar.gz
brdo-6a7e45d0087f7cedb1e73f0c390484cfed1de472.tar.bz2
- Patch #37824 by zen: added missing {} to SQL queries in updates.inc.
Diffstat (limited to 'database')
-rw-r--r--database/updates.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/database/updates.inc b/database/updates.inc
index 8463ddc3e..006a57ba2 100644
--- a/database/updates.inc
+++ b/database/updates.inc
@@ -245,7 +245,7 @@ function update_113() {
uid integer default '0',
timestamp integer NOT NULL default '0'
)");
- $ret[] = update_sql("INSERT INTO accesslog (title, path, url, hostname, uid, timestamp) SELECT title, path, url, hostname, uid, timestamp FROM accesslog_t");
+ $ret[] = update_sql("INSERT INTO {accesslog} (title, path, url, hostname, uid, timestamp) SELECT title, path, url, hostname, uid, timestamp FROM {accesslog}_t");
$ret[] = update_sql("DROP TABLE {accesslog}_t");
$ret[] = update_sql("CREATE INDEX {accesslog}_timestamp_idx ON {accesslog} (timestamp);");