Fixed Duplicate code in XF\App.php

Kirby

Well-known member
Affected version
2.0 DP10
This is an absolute showstopper ... not ;)

PHP:
$container['oAuth'] = function($c)
{
    $class = $this->extendClass('XF\SubContainer\OAuth');
    return new $class($c, $this);
};

$container['oAuth'] = function($c)
{
    $class = $this->extendClass('XF\SubContainer\OAuth');
    return new $class($c, $this);
};
 
Top Bottom