From: Aaron Schulz Date: Sun, 13 Apr 2008 07:20:14 +0000 (+0000) Subject: Use getVal() X-Git-Tag: 1.31.0-rc.0~48388 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/comptes/ajouter.php?a=commitdiff_plain;h=d72926c6ca961822273588389ece6880866386f2;p=lhc%2Fweb%2Fwiklou.git Use getVal() --- diff --git a/includes/SpecialRecentchangeslinked.php b/includes/SpecialRecentchangeslinked.php index 96e8a14766..96bfa5a41d 100644 --- a/includes/SpecialRecentchangeslinked.php +++ b/includes/SpecialRecentchangeslinked.php @@ -18,7 +18,7 @@ function wfSpecialRecentchangeslinked( $par = NULL ) { $fname = 'wfSpecialRecentchangeslinked'; $days = $wgRequest->getInt( 'days' ); - $target = isset($par) ? $par : $wgRequest->getText( 'target' ); + $target = isset($par) ? $par : $wgRequest->getVal( 'target' ); $hideminor = $wgRequest->getBool( 'hideminor' ) ? 1 : 0; $wgOut->setPagetitle( wfMsg( 'recentchangeslinked' ) );