From: Niklas Laxström Date: Mon, 29 Mar 2010 19:18:58 +0000 (+0000) Subject: Fix syntax terrors X-Git-Tag: 1.31.0-rc.0~37315 X-Git-Url: http://git.cyclocoop.org/%24self?a=commitdiff_plain;h=b4f9c127051439642ad8d097b66626941d5e21f1;p=lhc%2Fweb%2Fwiklou.git Fix syntax terrors --- 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() ) ); } /**