DevelopmentSettings: Remove unused globals & declare $wgSQLMode
Some globals where declared but not used and $wgSQLMode was not declared at all. Removed the unsed vars. Change-Id: I44e6b8b6173674089271a172cf7bda6e320c53d8
This commit is contained in:
parent
a4c86d3017
commit
2dc9ea3f32
1 changed files with 2 additions and 2 deletions
|
|
@ -25,8 +25,8 @@ ini_set( 'display_errors', 1 );
|
|||
* Debugging: MediaWiki
|
||||
*/
|
||||
global $wgDevelopmentWarnings, $wgShowExceptionDetails, $wgShowHostnames,
|
||||
$wgDebugRawPage, $wgDebugComments, $wgDebugDumpSql, $wgDebugTimestamps,
|
||||
$wgCommandLineMode, $wgDebugLogFile, $wgDBerrorLog, $wgDebugLogGroups;
|
||||
$wgDebugRawPage, $wgSQLMode, $wgCommandLineMode, $wgDebugLogFile,
|
||||
$wgDBerrorLog, $wgDebugLogGroups;
|
||||
|
||||
// Use of wfWarn() should cause tests to fail
|
||||
$wgDevelopmentWarnings = true;
|
||||
|
|
|
|||
Loading…
Reference in a new issue