From: Brion Vibber Date: Sun, 26 Oct 2008 02:53:14 +0000 (+0000) Subject: Tweak for r42592 (re-adding alt text for arrows on enhanced RC) X-Git-Tag: 1.31.0-rc.0~44579 X-Git-Url: http://git.cyclocoop.org/%28?a=commitdiff_plain;h=4d1f80de6119de58a2e4eaf8e813effbd3c99b19;p=lhc%2Fweb%2Fwiklou.git 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. :) --- 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 } /**