From 6ca4832919a8846075d9f40de737b46cdc4e7a53 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 12 Jul 2007 17:32:18 +0000 Subject: [PATCH] Quick fix for html validity in log pages.... this is kind of a bad interface, shouldn't the space be added internally? :P --- includes/Linker.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 = ''; } -- 2.20.1