Index: trunk/phase3/includes/Skin.php |
— | — | @@ -538,7 +538,7 @@ |
539 | 539 | $colon = wfMsgExt( 'colon-separator', 'escapenoentities' ); |
540 | 540 | |
541 | 541 | if ( !empty( $allCats['normal'] ) ) { |
542 | | - $t = $embed . implode( "{$pop} {$embed}" , $allCats['normal'] ) . $pop; |
| 542 | + $t = $embed . implode( "{$pop}{$embed}" , $allCats['normal'] ) . $pop; |
543 | 543 | |
544 | 544 | $msg = wfMsgExt( 'pagecategories', array( 'parsemag', 'escapenoentities' ), count( $allCats['normal'] ) ); |
545 | 545 | $s .= '<div id="mw-normal-catlinks">' . |
— | — | @@ -558,7 +558,7 @@ |
559 | 559 | |
560 | 560 | $s .= "<div id=\"mw-hidden-catlinks\" class=\"$class\">" . |
561 | 561 | wfMsgExt( 'hidden-categories', array( 'parsemag', 'escapenoentities' ), count( $allCats['hidden'] ) ) . |
562 | | - $colon . '<ul>' . $embed . implode( "{$pop} {$embed}" , $allCats['hidden'] ) . $pop . '</ul>' . |
| 562 | + $colon . '<ul>' . $embed . implode( "{$pop}{$embed}" , $allCats['hidden'] ) . $pop . '</ul>' . |
563 | 563 | '</div>'; |
564 | 564 | } |
565 | 565 | |