From: Daniel Friesen Date: Sun, 3 Apr 2011 12:37:07 +0000 (+0000) Subject: Followup r85244; Fix a small issue with the case of a variable name. X-Git-Tag: 1.31.0-rc.0~31055 X-Git-Url: http://git.cyclocoop.org/%22.%28%24lien.?a=commitdiff_plain;h=4d1624f9f5a9e59a5716f44a64778dfe550af756;p=lhc%2Fweb%2Fwiklou.git Followup r85244; Fix a small issue with the case of a variable name. --- 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" ); } }