Index: trunk/phase3/includes/context/ContextSource.php |
— | — | @@ -118,7 +118,8 @@ |
119 | 119 | * @return Message object |
120 | 120 | */ |
121 | 121 | public function msg( /* $args */ ) { |
122 | | - return call_user_func_array( array( $this->getContext(), 'msg' ), func_get_args() ); |
| 122 | + $args = func_get_args(); |
| 123 | + return call_user_func_array( array( $this->getContext(), 'msg' ), $args ); |
123 | 124 | } |
124 | 125 | } |
125 | 126 | |