From 280f043665ece3b68fdc05c3b5784e64ae8549e9 Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Sun, 21 Nov 2010 17:27:13 +0000 Subject: [PATCH] Per r77072 CR, followup r66872 (seemingly my crappy code from 5 months ago) like r77079 --- includes/api/ApiQueryIWLinks.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/api/ApiQueryIWLinks.php b/includes/api/ApiQueryIWLinks.php index 3ee820b7eb..5a5b452d2c 100644 --- a/includes/api/ApiQueryIWLinks.php +++ b/includes/api/ApiQueryIWLinks.php @@ -96,7 +96,7 @@ class ApiQueryIWLinks extends ApiQueryBase { if ( !is_null( $params['url'] ) ) { $title = Title::newFromText( "{$row->iwl_prefix}:{$row->iwl_title}" ); if ( $title ) { - $entry = array_merge( $entry, array( 'url' => $title->getFullURL() ) ); + $entry['url'] = $title->getFullURL(); } } -- 2.20.1