r37655 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r37654‎ | r37655 | r37656 >
Date:18:25, 14 July 2008
Author:ialex
Status:old
Tags:
Comment:
Added missing settings: $wgDBpassword, $wgDBmwschema and $wgDBts2schema
Modified paths:
  • /trunk/phase3/includes/DefaultSettings.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/DefaultSettings.php
@@ -542,22 +542,30 @@
543543 $wgDBconnection = '';
544544 /** Database username */
545545 $wgDBuser = 'wikiuser';
546 -/** Database type
547 - */
548 -$wgDBtype = "mysql";
 546+/** Database user's password */
 547+$wgDBpassword = '';
 548+/** Database type */
 549+$wgDBtype = 'mysql';
 550+
549551 /** Search type
550552 * Leave as null to select the default search engine for the
551 - * selected database type (eg SearchMySQL4), or set to a class
 553+ * selected database type (eg SearchMySQL), or set to a class
552554 * name to override to a custom search engine.
553555 */
554556 $wgSearchType = null;
 557+
555558 /** Table name prefix */
556559 $wgDBprefix = '';
557560 /** MySQL table options to use during installation or update */
558 -$wgDBTableOptions = 'ENGINE=InnoDB';
 561+$wgDBTableOptions = 'ENGINE=InnoDB';
559562
 563+/** Mediawiki schema */
 564+$wgDBmwschema = 'mediawiki';
 565+/** Tsearch2 schema */
 566+$wgDBts2schema = 'public';
 567+
560568 /** To override default SQLite data directory ($docroot/../data) */
561 -$wgSQLiteDataDir = '';
 569+$wgSQLiteDataDir = '';
562570
563571 /**
564572 * Make all database connections secretly go to localhost. Fool the load balancer

Status & tagging log