From ee667c0a98b61fb7ab23e047f42aff37eec5c677 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Thu, 6 Feb 2014 01:14:51 +0100 Subject: [PATCH] Send the full title to the 'nogomatch' debug log group Otherwise the namespace gets lost when the user provides one. Change-Id: I73f63e936ba53993ba40c89d7fa3d2b218a796a2 --- includes/specials/SpecialSearch.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/specials/SpecialSearch.php b/includes/specials/SpecialSearch.php index b89522def1..7787b05323 100644 --- a/includes/specials/SpecialSearch.php +++ b/includes/specials/SpecialSearch.php @@ -198,7 +198,7 @@ class SpecialSearch extends SpecialPage { if ( !is_null( $t ) ) { global $wgGoToEdit; wfRunHooks( 'SpecialSearchNogomatch', array( &$t ) ); - wfDebugLog( 'nogomatch', $t->getText(), 'private' ); + wfDebugLog( 'nogomatch', $t->getFullText(), 'private' ); # If the feature is enabled, go straight to the edit page if ( $wgGoToEdit ) { -- 2.20.1