diff --git a/Changelog b/Changelog index ad0b801f7..09567d4b1 100755 --- a/Changelog +++ b/Changelog @@ -1,4 +1,5 @@ 2018-03-01 DariusIII + * Chg: Instantiate Request class as soon as possible * Fix: Fix updating of site settings * Chg: Update Basepage to use request secure site check * Fix: Fix bulk adding of groups diff --git a/bootstrap/autoload.php b/bootstrap/autoload.php index c87c3d8b1..c65c17a13 100644 --- a/bootstrap/autoload.php +++ b/bootstrap/autoload.php @@ -26,4 +26,5 @@ if (! defined('HAS_WHICH')) { new Configure('indexer'); $app->make(Illuminate\Contracts\Console\Kernel::class)->bootstrap(); +$app->handle(\Illuminate\Http\Request::capture()); require_once __DIR__.DIRECTORY_SEPARATOR.'yenc.php';