Merge pull request #5116 from turbo124/v5-stable

5.1.24
This commit is contained in:
David Bomba 2021-03-13 19:51:16 +11:00 committed by GitHub
commit ef8985293d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
5.1.23 5.1.24

View File

@ -289,7 +289,7 @@ trait DesignHelpers
return ''; return '';
} }
if (!property_exists($this->client->company->custom_fields, $field)) { if ($this->client->company->custom_fields && !property_exists($this->client->company->custom_fields, $field)) {
return ''; return '';
} }

View File

@ -13,7 +13,7 @@ return [
'require_https' => env('REQUIRE_HTTPS', true), 'require_https' => env('REQUIRE_HTTPS', true),
'app_url' => rtrim(env('APP_URL', ''), '/'), 'app_url' => rtrim(env('APP_URL', ''), '/'),
'app_domain' => env('APP_DOMAIN', ''), 'app_domain' => env('APP_DOMAIN', ''),
'app_version' => '5.1.23', 'app_version' => '5.1.24',
'minimum_client_version' => '5.0.16', 'minimum_client_version' => '5.0.16',
'terms_version' => '1.0.1', 'terms_version' => '1.0.1',
'api_secret' => env('API_SECRET', false), 'api_secret' => env('API_SECRET', false),