From 44f74db1123c1dcc34388d4a34c18bf404994e3a Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 5 Jun 2007 18:59:19 +0000 Subject: [PATCH] Fix regression in section edit links - broken XML output --- includes/Linker.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Linker.php b/includes/Linker.php index 0020091931..0ab798d30f 100644 --- a/includes/Linker.php +++ b/includes/Linker.php @@ -1064,7 +1064,7 @@ class Linker { $result = null; wfRunHooks( 'EditSectionLinkForOther', array( &$this, $title, $section, $url, &$result ) ); return is_null( $result ) - ? "" + ? "[{$url}]" : "[{$result}]"; } -- 2.20.1