From b4f9c127051439642ad8d097b66626941d5e21f1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niklas=20Laxstr=C3=B6m?= Date: Mon, 29 Mar 2010 19:18:58 +0000 Subject: [PATCH] Fix syntax terrors --- includes/Message.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/Message.php b/includes/Message.php index 2ec07fae8c..a28d082516 100644 --- a/includes/Message.php +++ b/includes/Message.php @@ -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() ) ); } /** -- 2.20.1