Removed the note about that $wgSharedDB only works for user table
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Sun, 4 May 2008 13:22:22 +0000 (13:22 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Sun, 4 May 2008 13:22:22 +0000 (13:22 +0000)
includes/DefaultSettings.php

index 3ee9ea4..99f0d6b 100644 (file)
@@ -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' );