Add space after math_failure message

Having the error message direct behind the message looks odd.

Change-Id: I60af7eb0aa826c7cd0671470a5a10e6bce8f6649
This commit is contained in:
umherirrender 2014-02-19 19:04:07 +01:00
parent 01ca982894
commit f5e302bf9f
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ abstract class MathRenderer {
array_shift( $parameters );
$errmsg = wfMessage( $msg, $parameters )->inContentLanguage()->escaped();
$source = htmlspecialchars( str_replace( "\n", ' ', $this->tex ) );
return "<strong class='error texerror'>$mf($errmsg): $source</strong>\n";
return "<strong class='error texerror'>$mf ($errmsg): $source</strong>\n";
}
/**