From 4468951a9665673ee2cc4d6c82b64cc122c98e4e Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Sun, 4 May 2008 13:22:22 +0000 Subject: [PATCH] Removed the note about that $wgSharedDB only works for user table --- includes/DefaultSettings.php | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 3ee9ea4697..99f0d6ba87 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -577,11 +577,9 @@ $wgAllDBsAreLocalhost = false; /** Live high performance sites should disable this - some checks acquire giant mysql locks */ $wgCheckDBSchema = true; - /** - * Shared database for multiple wikis. Presently used for storing a user table - * for single sign-on. The server for this database must be the same as for the - * main database. + * Shared database for multiple wikis. + * The server for this database must be the same as for the main database. * EXPERIMENTAL */ $wgSharedDB = null; @@ -589,12 +587,12 @@ $wgSharedDB = null; /** * List of database tables (without prefixes) to share when $wgSharedDB is enabled. * This only includes the user table by default for backwards compatibility. - * However you may remove it so that you can enable extensions using the shared DB - * without having shared users. Or you can add in another table, such as interwiki - * to force MediaWiki to use the shared version of the table instead. + * However you may remove it so that you can enable extensions using the shared + * DB without having shared users. Or you can add in another table, such as + * interwiki to force MediaWiki to use the shared version of the table instead. * - * Be carefull with sharing tables. The images, revisions, pages, and many of the - * other tables may have bad side effects if you share them. + * Be carefull with sharing tables. The images, revisions, pages, and many of + * the other tables may have bad side effects if you share them. * EXPERIMENTAL */ $wgSharedDBtables = array( 'user' ); -- 2.20.1