X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FStubObject.php;h=2dfcdc2f497b45f84718913dfc16ceb02fd84ab5;hb=faab8d66d948d42d4a1d3b6a372b214a96bf5d31;hp=adca862c935571af74351818213694efd3674110;hpb=f29bed53df96e26176f8a1ac4e87f0977608b77b;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/StubObject.php b/includes/StubObject.php index adca862c93..2dfcdc2f49 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]; } }