From: Aaron Schulz Date: Sun, 13 Apr 2008 23:49:01 +0000 (+0000) Subject: Clean up title X-Git-Tag: 1.31.0-rc.0~48353 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/comptes/journal.php?a=commitdiff_plain;h=e45b955de01ffbadb1f04e4079e1a2af1bdd393f;p=lhc%2Fweb%2Fwiklou.git Clean up title --- diff --git a/includes/SpecialRecentchangeslinked.php b/includes/SpecialRecentchangeslinked.php index c922cede04..0ba8d06168 100644 --- a/includes/SpecialRecentchangeslinked.php +++ b/includes/SpecialRecentchangeslinked.php @@ -22,6 +22,9 @@ function wfSpecialRecentchangeslinked( $par = NULL ) { $hideminor = $wgRequest->getBool( 'hideminor' ) ? 1 : 0; $showlinkedto = $wgRequest->getBool( 'showlinkedto' ) ? 1 : 0; + $title = Title::newFromURL( $target ); + $target = $title ? $title->getPrefixedText() : ''; + $wgOut->setPagetitle( wfMsg( 'recentchangeslinked' ) ); $sk = $wgUser->getSkin();