diff options
| author | Zach DeCook <zachdecook@librem.one> | 2022-08-27 07:56:10 -0400 |
|---|---|---|
| committer | Zach DeCook <zachdecook@librem.one> | 2022-08-27 07:56:10 -0400 |
| commit | 83d128519312d06c3faa5ba64245864cb254fa97 (patch) | |
| tree | 8a720354ff3328c54023f7c99a0d1985de35b8f4 /laravel/public | |
| parent | 5ad436b0468899c65b95429856ad2b3a99e28038 (diff) | |
| download | prosongsa-83d128519312d06c3faa5ba64245864cb254fa97.tar.gz | |
laravel: Update to 8.x
Diffstat (limited to 'laravel/public')
| -rwxr-xr-x | laravel/public/index.gmi | 3 | ||||
| -rw-r--r-- | laravel/public/index.php | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/laravel/public/index.gmi b/laravel/public/index.gmi index 8bc26d5..419580a 100755 --- a/laravel/public/index.gmi +++ b/laravel/public/index.gmi @@ -2,6 +2,9 @@ <?php define('LARAVEL_START', microtime(true)); +if (file_exists(__DIR__.'/../storage/framework/maintenance.php')) { + require __DIR__.'/../storage/framework/maintenance.php'; +} require __DIR__.'/../vendor/autoload.php'; require __DIR__.'/../load-eloquent.php'; $app = require_once __DIR__.'/../bootstrap/app.php'; diff --git a/laravel/public/index.php b/laravel/public/index.php index 4584cbc..26e536a 100644 --- a/laravel/public/index.php +++ b/laravel/public/index.php @@ -9,6 +9,10 @@ define('LARAVEL_START', microtime(true)); +if (file_exists(__DIR__.'/../storage/framework/maintenance.php')) { + require __DIR__.'/../storage/framework/maintenance.php'; +} + /* |-------------------------------------------------------------------------- | Register The Auto Loader |
