From 4d1624f9f5a9e59a5716f44a64778dfe550af756 Mon Sep 17 00:00:00 2001 From: Daniel Friesen Date: Sun, 3 Apr 2011 12:37:07 +0000 Subject: [PATCH] Followup r85244; Fix a small issue with the case of a variable name. --- includes/Skin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Skin.php b/includes/Skin.php index 3b25570989..a7bad90704 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -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" ); } } -- 2.20.1