From: Alexandre Emsenhuber Date: Sun, 4 May 2008 13:22:22 +0000 (+0000) Subject: Removed the note about that $wgSharedDB only works for user table X-Git-Tag: 1.31.0-rc.0~47917 X-Git-Url: http://git.cyclocoop.org/%22.%24h.%22?a=commitdiff_plain;h=4468951a9665673ee2cc4d6c82b64cc122c98e4e;p=lhc%2Fweb%2Fwiklou.git Removed the note about that $wgSharedDB only works for user table --- 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' );