X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FStubObject.php;h=49155d6d996b75fda6b9caf16992f5cbb96aa0bd;hb=4db800ee441d51a36861d02a54476c9ded26b0f7;hp=adca862c935571af74351818213694efd3674110;hpb=e100650952565562a16bbc562c8706b12c621981;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/StubObject.php b/includes/StubObject.php index adca862c93..49155d6d99 100644 --- a/includes/StubObject.php +++ b/includes/StubObject.php @@ -150,10 +150,8 @@ class StubObject { if ( get_class( $GLOBALS[$this->global] ) != $this->class ) { $fname = __METHOD__ . '-' . $this->global; - wfProfileIn( $fname ); $caller = wfGetCaller( $level ); if ( ++$recursionLevel > 2 ) { - wfProfileOut( $fname ); throw new MWException( "Unstub loop detected on call of " . "\${$this->global}->$name from $caller\n" ); } @@ -161,7 +159,6 @@ class StubObject { . "\${$this->global}::$name from $caller\n" ); $GLOBALS[$this->global] = $this->_newObject(); --$recursionLevel; - wfProfileOut( $fname ); return $GLOBALS[$this->global]; } } @@ -197,7 +194,7 @@ class StubUserLang extends StubObject { public function findVariantLink( &$link, &$nt, $ignoreOtherCond = false ) { global $wgLang; $this->_unstub( 'findVariantLink', 3 ); - return $wgLang->findVariantLink( $link, $nt, $ignoreOtherCond ); + $wgLang->findVariantLink( $link, $nt, $ignoreOtherCond ); } /**