Merge "Change space to non-breaking space to keep headers aligned"

This commit is contained in:
jenkins-bot 2013-05-24 11:09:55 +00:00 committed by Gerrit Code Review
commit b65669ff7a

View file

@ -526,7 +526,10 @@ class CategoryViewer extends ContextSource {
$first = true;
foreach ( $colContents as $char => $articles ) {
$ret .= '<h3>' . htmlspecialchars( $char );
# Change space to non-breaking space to keep headers aligned
$h3char = $char === ' ' ? '&#160;' : htmlspecialchars( $char );
$ret .= '<h3>' . $h3char;
if ( $first && $char === $prevchar ) {
# We're continuing a previous chunk at the top of a new
# column, so add " cont." after the letter.