Difference between revisions of "Extension talk:CurrentUsers"

From Organic Design wiki
m ([[Talk:Extension:CurrentUsers.php]] moved to Foo talk:CurrentUsers.php)
($users returned output)
Line 1: Line 1:
 
{{ext-talk-msg|CurrentUsers}}
 
{{ext-talk-msg|CurrentUsers}}
 +
 +
If this extension version 1.0.3 does not work in prior versions of mediawiki (<=1.11.2), we may need to add a conditional to the end of the wfCurrentUsersMagic function;
 +
{{code|
 +
<php>
 +
if($wgVersion === "1.12.0") {
 +
return $parser->preprocess($users,$wgTitle,$parser->mOptions);
 +
} else {
 +
  return $users;
 +
}
 +
</php>
 +
}}
 +
--[[User:Sven|Sven]] 12:11, 27 March 2008 (NZST)

Revision as of 00:11, 27 March 2008

Info.svg This talk page pertains specifically to the development of this extension. For more general discussion about bugs and usage etc, please refer to the mediawiki.org talk page at MW:Extension talk:CurrentUsers


If this extension version 1.0.3 does not work in prior versions of mediawiki (<=1.11.2), we may need to add a conditional to the end of the wfCurrentUsersMagic function;

{{{1}}}

--Sven 12:11, 27 March 2008 (NZST)