diff --git a/Changelog b/Changelog index 0828be623..c5ba99f79 100755 --- a/Changelog +++ b/Changelog @@ -1,5 +1,7 @@ -2018-03-26 DariusIII +2018-03-27 DariusIII + * Chg: Remove $kernel variable assignment from bootstraping laravel * Chg: Fix RSS feeds for logged out users +2018-03-26 DariusIII * Chg: Update laravel/framework to version 5.6.13, guzzlehttp/guzzle and phpunit to latest versions * Chg: Add missing filelist route * Chg: Add newline after Info comment message in DbUpdate class diff --git a/bootstrap/autoload.php b/bootstrap/autoload.php index 21d789589..38335b9ff 100644 --- a/bootstrap/autoload.php +++ b/bootstrap/autoload.php @@ -15,4 +15,4 @@ if (! defined('HAS_WHICH')) { define('HAS_WHICH', Utility::hasWhich() ? true : false); } -$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class)->bootstrap(); +$app->make(Illuminate\Contracts\Console\Kernel::class)->bootstrap();