r51732 MediaWiki - Code Review archive
Repository:
MediaWiki
Revision:
<
r51731
|
r51732
|
r51733
>
Date:
07:03, 11 June 2009
Author:
purodha
Status:
deferred
Tags:
Comment:
Fix syntax error introduced in
r51712
(but likely provoked by an error introduced in
r29575
)
Modified paths:
/trunk/extensions/Contributionseditcount/Contributionseditcount.php
(modified) (
history
)
Diff
[
purge
]
Index: trunk/extensions/Contributionseditcount/Contributionseditcount.php
—
—
@@ -25,7 +25,7 @@
26
26
$wgHooks['SpecialContributionsBeforeMainOutput'][] = 'wfContributionseditcount';
27
27
28
28
function wfContributionseditcount( $uid ) {
29
- if ( $uid != 0 )
29
+ if ( $uid != 0 ) {
30
30
global $wgOut, $wgLang;
31
31
wfLoadExtensionMessages( 'Contributionseditcount' );
32
32
$wgOut->addWikiText( wfMsgExt( 'contributionseditcount', array( 'parsemag' ),
Past revisions this follows-up on
Revision
Commit summary
Author
Date
r29575
* use wfLoadExtensionMessages for Contributionseditcount...
siebrand
07:25, 11 January 2008
r51712
Followup to
r51699
: Actually parse the message, wfMsgExt() by itself doesn't ...
demon
22:12, 10 June 2009
Status & tagging log
03:45, 15 June 2009
Tim Starling
(
talk
|
contribs
)
changed the
status
of r51732
[
removed:
new
added:
deferred]