From: Rob Church Date: Mon, 20 Mar 2006 01:57:50 +0000 (+0000) Subject: (bug 4114) Spacing in watchlist rows (in editing mode) X-Git-Tag: 1.6.0~183 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/modifier.php?a=commitdiff_plain;h=3cd26d6601d3859220bc0b9ba6ed05bed4443053;p=lhc%2Fweb%2Fwiklou.git (bug 4114) Spacing in watchlist rows (in editing mode) --- 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" );