From 3cd26d6601d3859220bc0b9ba6ed05bed4443053 Mon Sep 17 00:00:00 2001 From: Rob Church Date: Mon, 20 Mar 2006 01:57:50 +0000 Subject: [PATCH] (bug 4114) Spacing in watchlist rows (in editing mode) --- RELEASE-NOTES | 1 + includes/SpecialWatchlist.php | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 6e3bd531e1..1c5f7331f8 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -252,6 +252,7 @@ i18n / Languages: * (bug 5105) Magic words for LanguageAr.php * (bug 3993) Variants for Serbian language * Typo in English messages file +* (bug 4114) Spacing in watchlist rows (in editing mode) Parser: * (bug 2522) {{CURRENTDAY2}} now shows the current day number with two digits diff --git a/includes/SpecialWatchlist.php b/includes/SpecialWatchlist.php index 352e2d0827..7f6653156f 100644 --- a/includes/SpecialWatchlist.php +++ b/includes/SpecialWatchlist.php @@ -177,9 +177,10 @@ function wfSpecialWatchlist( $par ) { htmlspecialchars( $s->wl_title ) . '" in namespace ' . $s->wl_namespace . " -->\n" ); } else { + global $wgContLang; $t = $t->getPrefixedText(); $wgOut->addHTML( - '
  • ' . + '
  • ' . ' ' . ($wgContLang->isRTL() ? '‏' : '‎') . $sk->makeLink( $t, $t ) . "
  • \n" ); -- 2.20.1