From 4c1545e6c098fa0b11c021d80026aeee8d28eae8 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Tue, 1 Jul 2008 15:35:21 +0000 Subject: [PATCH] Replace underscores in target --- includes/specials/SpecialRecentchangeslinked.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/specials/SpecialRecentchangeslinked.php b/includes/specials/SpecialRecentchangeslinked.php index 2b00ef3f8f..3f9ad06ef1 100644 --- a/includes/specials/SpecialRecentchangeslinked.php +++ b/includes/specials/SpecialRecentchangeslinked.php @@ -108,7 +108,7 @@ class SpecialRecentchangeslinked extends SpecialRecentchanges { $extraOpts = array(); $extraOpts['namespace'] = $this->namespaceFilterForm( $opts ); $extraOpts['target'] = array( wfMsg( 'recentchangeslinked-page' ), - Xml::input( 'target', 40, $opts['target'] ) . + Xml::input( 'target', 40, str_replace('_',' ',$opts['target']) ) . Xml::check( 'showlinkedto', $opts['showlinkedto'], array('id' => 'showlinkedto') ) . ' ' . Xml::label( wfMsg("recentchangeslinked-to"), 'showlinkedto' ) ); $extraOpts['submit'] = Xml::submitbutton( wfMsg('allpagessubmit') ); -- 2.20.1