r56733 MediaWiki - Code Review archive
Repository:
MediaWiki
Revision:
<
r56732
|
r56733
|
r56734
>
Date:
20:31, 21 September 2009
Author:
ialex
Status:
ok
Tags:
Comment:
Fix for
r56551
: Added missing "</li>" when reducing indentation, passed validation with HTML 5, but not XHTML 1.0 Transitional :)
Modified paths:
/trunk/phase3/includes/Skin.php
(modified) (
history
)
Diff
[
purge
]
Index: trunk/phase3/includes/Skin.php
—
—
@@ -988,7 +988,7 @@
989
989
}
990
990
991
991
if ( $diff < 0 )
992
- $ret .= str_repeat( "</li></ul>\n", -$diff ) . "<li>\n";
992
+ $ret .= str_repeat( "</li></ul>\n", -$diff ) . "</li><li>\n";
993
993
elseif ( $diff == 0 )
994
994
$ret .= "</li><li>\n";
995
995
else
Past revisions this follows-up on
Revision
Commit summary
Author
Date
r56551
* indent debug output produced when both $wgShowDebug and $wgDebugFunctionEnt...
ialex
18:55, 17 September 2009
Status & tagging log
23:37, 29 September 2009
Brion VIBBER
(
talk
|
contribs
)
changed the
status
of r56733
[
removed:
new
added:
ok]