Documentation issues for wfMsgReal - convert incorrect usage of @return to @param...
authorAndrew Garrett <werdna@users.mediawiki.org>
Fri, 3 Nov 2006 22:33:46 +0000 (22:33 +0000)
committerAndrew Garrett <werdna@users.mediawiki.org>
Fri, 3 Nov 2006 22:33:46 +0000 (22:33 +0000)
includes/GlobalFunctions.php

index 4bc23e2..38d89fd 100644 (file)
@@ -375,9 +375,11 @@ function wfMsgNoDBForContent( $key ) {
 
 /**
  * Really get a message
- * @return $key String: key to get.
- * @return $args
- * @return $useDB Boolean
+ * @param $key String: key to get.
+ * @param $args
+ * @param $useDB Boolean
+ * @param $transform Boolean: Whether or not to transform the message.
+ * @param $forContent Boolean
  * @return String: the requested message.
  */
 function wfMsgReal( $key, $args, $useDB = true, $forContent=false, $transform = true ) {