Followup r85244; Fix a small issue with the case of a variable name.
authorDaniel Friesen <dantman@users.mediawiki.org>
Sun, 3 Apr 2011 12:37:07 +0000 (12:37 +0000)
committerDaniel Friesen <dantman@users.mediawiki.org>
Sun, 3 Apr 2011 12:37:07 +0000 (12:37 +0000)
includes/Skin.php

index 3b25570..a7bad90 100644 (file)
@@ -1615,7 +1615,7 @@ abstract class Skin {
                        return call_user_func_array( array( 'Linker', $fname ), $args );
                } else {
                        $className = get_class( $this );
-                       throw new MWException( "Call to undefined method $className::$fName" );
+                       throw new MWException( "Call to undefined method $className::$fname" );
                }
        }