From: Brion Vibber Date: Thu, 12 Jul 2007 17:32:18 +0000 (+0000) Subject: Quick fix for html validity in log pages.... this is kind of a bad interface, shouldn... X-Git-Tag: 1.31.0-rc.0~52117 X-Git-Url: http://git.cyclocoop.org/data/%24oldEdit?a=commitdiff_plain;h=6ca4832919a8846075d9f40de737b46cdc4e7a53;p=lhc%2Fweb%2Fwiklou.git Quick fix for html validity in log pages.... this is kind of a bad interface, shouldn't the space be added internally? :P --- diff --git a/includes/Linker.php b/includes/Linker.php index 9613026547..cda07fc7dd 100644 --- a/includes/Linker.php +++ b/includes/Linker.php @@ -761,7 +761,7 @@ class Linker { if( $userId ) { // check if the user has an edit if( $redContribsWhenNoEdits && User::edits( $userId ) == 0 ) { - $style = "class='new'"; + $style = " class='new'"; } else { $style = ''; }