Merge "Fix 'Tags' padding to keep it farther from the edge and document the source...
[lhc/web/wiklou.git] / includes / context / ContextSource.php
index 03fb9e2..6182538 100644 (file)
@@ -168,7 +168,7 @@ abstract class ContextSource implements IContextSource {
        public function msg( $key /* $args */ ) {
                $args = func_get_args();
 
-               return call_user_func_array( [ $this->getContext(), 'msg' ], $args );
+               return $this->getContext()->msg( ...$args );
        }
 
        /**