From 699580ab510de060efcc5b7f9540518d07c4c2bf Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Tue, 6 Mar 2012 00:10:36 +0000 Subject: [PATCH] And fix the . from r113110 --- includes/installer/MysqlUpdater.php | 2 +- includes/installer/SqliteUpdater.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/installer/MysqlUpdater.php b/includes/installer/MysqlUpdater.php index c82cb2237e..5e6ae7eafb 100644 --- a/includes/installer/MysqlUpdater.php +++ b/includes/installer/MysqlUpdater.php @@ -195,7 +195,7 @@ class MysqlUpdater extends DatabaseUpdater { // 1.20 array( 'addTable', 'config', 'patch-config.sql' ), - array( 'addIndex', 'revision'. 'page_user_timestamp', 'patch-revision-user-page-index.sql' ), + array( 'addIndex', 'revision', 'page_user_timestamp', 'patch-revision-user-page-index.sql' ), ); } diff --git a/includes/installer/SqliteUpdater.php b/includes/installer/SqliteUpdater.php index 4c7305d83c..a98c4db83a 100644 --- a/includes/installer/SqliteUpdater.php +++ b/includes/installer/SqliteUpdater.php @@ -74,7 +74,7 @@ class SqliteUpdater extends DatabaseUpdater { // 1.20 array( 'addTable', 'config', 'patch-config.sql' ), - array( 'addIndex', 'revision'. 'page_user_timestamp', 'patch-revision-user-page-index.sql' ), + array( 'addIndex', 'revision', 'page_user_timestamp', 'patch-revision-user-page-index.sql' ), ); } -- 2.20.1