From 571840c19c0a2a3c11e49a3cf8676584abbbb65a Mon Sep 17 00:00:00 2001 From: Gabriel Wicke Date: Wed, 9 Jun 2004 15:15:39 +0000 Subject: [PATCH] small bug in " -\> ' conversion --- includes/Skin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Skin.php b/includes/Skin.php index 3e6711dbbd..fa569d9466 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -2607,7 +2607,7 @@ class Skin { return $head; } $url = $wgTitle->escapeLocalURL( 'action=edit§ion='.$section ); - return ''.$head.''; + return ''.$head.''; } function editSectionLink( $section ) { -- 2.20.1