chore: update CodeIgniter to 4.5.1 + other dependencies to latest

This commit is contained in:
Yassine Doghri 2024-04-26 09:26:22 +00:00
commit d4a36f811b
103 changed files with 3079 additions and 2745 deletions

View file

@ -160,9 +160,7 @@ class InstallController extends Controller
if (! $this->validate($rules)) {
return redirect()
->to(
(host_url() === null ? config(App::class) ->baseURL : host_url()) . config(Install::class)->gateway
)
->to((host_url() ?? config(App::class) ->baseURL) . config(Install::class)->gateway)
->withInput()
->with('errors', $this->validator->getErrors());
}