Follow up r75245.
authorPlatonides <platonides@users.mediawiki.org>
Tue, 26 Oct 2010 13:54:47 +0000 (13:54 +0000)
committerPlatonides <platonides@users.mediawiki.org>
Tue, 26 Oct 2010 13:54:47 +0000 (13:54 +0000)
Fix PHP Fatal error:  Call to a member function ucfirst() on a non-object

maintenance/tests/phpunit/includes/SampleTest.php

index 112e8b5..59857d9 100644 (file)
@@ -6,6 +6,9 @@ class TestSample extends PHPUnit_Framework_TestCase {
         * Anything that needs to happen before your tests should go here.
         */
        function setUp() {
+               global $wgContLang;
+               /* For example, we need to set $wgContLang for creating a new Title */
+               $wgContLang = Language::factory( 'en' );
        }
 
        /**