From: Sam Reed Date: Tue, 6 Mar 2012 00:10:36 +0000 (+0000) Subject: And fix the . from r113110 X-Git-Tag: 1.31.0-rc.0~24374 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=699580ab510de060efcc5b7f9540518d07c4c2bf;p=lhc%2Fweb%2Fwiklou.git And fix the . from r113110 --- 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' ), ); }