Removing a debug line.
authorRotem Liss <rotem@users.mediawiki.org>
Tue, 21 Oct 2008 09:34:01 +0000 (09:34 +0000)
committerRotem Liss <rotem@users.mediawiki.org>
Tue, 21 Oct 2008 09:34:01 +0000 (09:34 +0000)
maintenance/language/checkLanguage.inc

index 20e3952..ab99df0 100644 (file)
@@ -261,9 +261,7 @@ ENDS;
 
                        $callback = array( $this->L, $checkFunctions[$check] );
                        if ( !is_callable( $callback ) ) {
-                               # DEBUG
-                               # throw new MWException( "Unkown check $check." );
-                               continue;
+                               throw new MWException( "Unkown check $check." );
                        }
                        $results[$check] = call_user_func( $callback , $code );
                }