From: Alexandre Emsenhuber Date: Mon, 14 Jul 2008 18:25:43 +0000 (+0000) Subject: Added missing settings: $wgDBpassword, $wgDBmwschema and $wgDBts2schema X-Git-Tag: 1.31.0-rc.0~46522 X-Git-Url: http://git.cyclocoop.org/%28?a=commitdiff_plain;h=3100fc7058ef3d4756e853e4a09e1a62220847c9;p=lhc%2Fweb%2Fwiklou.git Added missing settings: $wgDBpassword, $wgDBmwschema and $wgDBts2schema --- diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 26fd3e9c60..77f8cb1637 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -542,22 +542,30 @@ $wgDBname = 'wikidb'; $wgDBconnection = ''; /** Database username */ $wgDBuser = 'wikiuser'; -/** Database type - */ -$wgDBtype = "mysql"; +/** Database user's password */ +$wgDBpassword = ''; +/** Database type */ +$wgDBtype = 'mysql'; + /** Search type * Leave as null to select the default search engine for the - * selected database type (eg SearchMySQL4), or set to a class + * selected database type (eg SearchMySQL), or set to a class * name to override to a custom search engine. */ $wgSearchType = null; + /** Table name prefix */ $wgDBprefix = ''; /** MySQL table options to use during installation or update */ -$wgDBTableOptions = 'ENGINE=InnoDB'; +$wgDBTableOptions = 'ENGINE=InnoDB'; + +/** Mediawiki schema */ +$wgDBmwschema = 'mediawiki'; +/** Tsearch2 schema */ +$wgDBts2schema = 'public'; /** To override default SQLite data directory ($docroot/../data) */ -$wgSQLiteDataDir = ''; +$wgSQLiteDataDir = ''; /** * Make all database connections secretly go to localhost. Fool the load balancer