From da49b4f7ce95a68aa7f6190804b0d18f1914cdfc Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jon=20Harald=20S=C3=B8by?= Date: Fri, 1 Aug 2008 00:22:39 +0000 Subject: [PATCH] Changing the code rendered for headers; removing , making into instead. This removes one line from the output code, but more importantly enables CSS marking of a title based on its id. Probably not backwards-compatible with browsers like IE4 (brion checked with IE5) and Netscape 4, but hey, who cares? --- includes/Linker.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Linker.php b/includes/Linker.php index 5b95abec6b..f129f82e66 100644 --- a/includes/Linker.php +++ b/includes/Linker.php @@ -1488,7 +1488,7 @@ class Linker { * @return string HTML headline */ public function makeHeadline( $level, $attribs, $anchor, $text, $link ) { - return "$text"; + return "$text"; } /** -- 2.20.1