Fix syntax terrors
authorNiklas Laxström <nikerabbit@users.mediawiki.org>
Mon, 29 Mar 2010 19:18:58 +0000 (19:18 +0000)
committerNiklas Laxström <nikerabbit@users.mediawiki.org>
Mon, 29 Mar 2010 19:18:58 +0000 (19:18 +0000)
includes/Message.php

index 2ec07fa..a28d082 100644 (file)
@@ -115,8 +115,8 @@ class Message {
         * @param Varargs: parameters as Strings
         * @return Message: $this
         */
-       public static function key( $key, /*...*/ ) {
-               return new self( $key, array_shift( func_get_args() );
+       public static function key( $key /*...*/ ) {
+               return new self( $key, array_shift( func_get_args() ) );
        }
 
        /**