1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00

make sure app url always has a trailing slash

This commit is contained in:
David Bomba 2020-07-25 07:46:56 +10:00
parent 643f709248
commit 339795b555
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ class QueryLogging
Log::info($request->method() . ' - ' . $request->url() . ": $count queries - " . $time);
// if($count > 100)
Log::info($queries);
// Log::info($queries);
}
}

View File

@ -10,7 +10,7 @@ return [
'app_name' => env('APP_NAME'),
'app_env' => env('APP_ENV', 'selfhosted'),
'require_https' => env('REQUIRE_HTTPS', true),
'app_url' => env('APP_URL', ''),
'app_url' => rtrim(env('APP_URL', ''), '/') . '/',
'app_domain' => env('APP_DOMAIN', ''),
'app_version' => '5.0.12',
'minimum_client_version' => '5.0.12',