r34395 MediaWiki - Code Review archive
Repository:
MediaWiki
Revision:
<
r34394
|
r34395
|
r34396
>
Date:
19:34, 7 May 2008
Author:
rotem
Status:
old
Tags:
Comment:
Format the group rights list as a list.
Modified paths:
/trunk/phase3/includes/SpecialListgrouprights.php
(modified) (
history
)
Diff
[
purge
]
Index: trunk/phase3/includes/SpecialListgrouprights.php
—
—
@@ -100,8 +100,10 @@
101
101
}
102
102
}
103
103
sort( $r );
104
- $r = implode( wfMsg( 'comma-separator' ), $r );
105
-
106
- return $r;
104
+ if( empty( $r ) ) {
105
+ return '';
106
+ } else {
107
+ return '<ul><li>' . implode( "</li>\n<li>", $r ) . '</li></ul>';
108
+ }
107
109
}
108
110
}
Status & tagging log
15:26, 12 September 2011
Meno25
(
talk
|
contribs
)
changed the
status
of r34395
[
removed:
ok
added:
old]