Index: trunk/extensions/RecordAdmin/RecordAdmin_body.php |
— | — | @@ -1005,7 +1005,7 @@ |
1006 | 1006 | /** |
1007 | 1007 | * If a record was created by a public form, make last 5 digits of ID available via a tag |
1008 | 1008 | */ |
1009 | | - function expandTag( $text, $argv, &$parser ) { |
| 1009 | + function expandTag( $text, $argv, $parser ) { |
1010 | 1010 | $parser->mOutput->mCacheTime = -1; |
1011 | 1011 | return $this->guid ? substr( $this->guid, -5 ) : ''; |
1012 | 1012 | } |
Index: trunk/extensions/News/News.php |
— | — | @@ -73,7 +73,7 @@ |
74 | 74 | return $html; |
75 | 75 | } |
76 | 76 | |
77 | | -function wfNewsFeedLinkTag( $linktext, $argv, &$parser ) { |
| 77 | +function wfNewsFeedLinkTag( $linktext, $argv, $parser ) { |
78 | 78 | return NewsRenderer::renderFeedLink($linktext, $argv, $parser); |
79 | 79 | } |
80 | 80 | |