From 6e20a8c245c0d5c99648e5094ba0c1ad83f5e680 Mon Sep 17 00:00:00 2001 From: Platonides Date: Tue, 27 Nov 2012 18:47:30 +0100 Subject: [PATCH] Fix $wgHtml5 case. Follow-up c35304 (0473c33) Change-Id: Ie5916a5fbb64873adb0ed8a6fdd0aca666c7ebf1 --- tests/phpunit/includes/SanitizerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/phpunit/includes/SanitizerTest.php b/tests/phpunit/includes/SanitizerTest.php index 90fd48240d..012c49d718 100644 --- a/tests/phpunit/includes/SanitizerTest.php +++ b/tests/phpunit/includes/SanitizerTest.php @@ -74,7 +74,7 @@ class SanitizerTest extends MediaWikiTestCase { # Enable HTML5 mode $save = $wgHtml5; - $wgHTML5 = true; + $wgHtml5 = true; if( $escaped ) { $this->assertEquals( "<$tag>", -- 2.20.1