From: umherirrender Date: Wed, 24 Sep 2014 18:49:08 +0000 (+0200) Subject: Fix function case: WebRequest::getIntorNull -> getIntOrNull X-Git-Tag: 1.31.0-rc.0~13836^2 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/supprimer.php?a=commitdiff_plain;h=68c5007007d04c51d832a5fa59344353d564d88e;p=lhc%2Fweb%2Fwiklou.git Fix function case: WebRequest::getIntorNull -> getIntOrNull Change-Id: I3cdbb17ae00b9565f522a80e1455edf375043763 --- diff --git a/includes/specials/SpecialLinkSearch.php b/includes/specials/SpecialLinkSearch.php index 371469bb27..37edc0f95c 100644 --- a/includes/specials/SpecialLinkSearch.php +++ b/includes/specials/SpecialLinkSearch.php @@ -88,7 +88,7 @@ class LinkSearchPage extends QueryPage { $request = $this->getRequest(); $target = $request->getVal( 'target', $par ); - $namespace = $request->getIntorNull( 'namespace', null ); + $namespace = $request->getIntOrNull( 'namespace', null ); $protocols_list = array(); foreach ( $this->getConfig()->get( 'UrlProtocols' ) as $prot ) {