https://bugzilla.wikimedia.org/show_bug.cgi?id=43877

--- Comment #7 from Ben <[email protected]> ---
I have hidden this error for now by changing Init::classexists() to:

    static function classExists( $class ) {

        if( $class == 'LanguageEn_gb' ){
            return false;
        }

        try {
            $r = new ReflectionClass( $class );
        } catch( ReflectionException $r ) {
            $r = false;
        }
        return $r !== false;
    }

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
You are watching all bug changes.
_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to