From 4d1f80de6119de58a2e4eaf8e813effbd3c99b19 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sun, 26 Oct 2008 02:53:14 +0000 Subject: [PATCH] Tweak for r42592 (re-adding alt text for arrows on enhanced RC) Use a non-breaking space instead of plain space for the alt text for the spacer image; the plain space seems to get lost (tested in firefox 3). :P Note this was broken before, it's not a regression. :) --- includes/ChangesList.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/ChangesList.php b/includes/ChangesList.php index 0f6ff3d2e3..48c748592b 100644 --- a/includes/ChangesList.php +++ b/includes/ChangesList.php @@ -813,7 +813,7 @@ class EnhancedChangesList extends ChangesList { * @return string HTML tag */ protected function spacerArrow() { - return $this->arrow( '', ' ' ); + return $this->arrow( '', codepointToUtf8( 0xa0 ) ); // non-breaking space } /** -- 2.20.1