mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
commit
18bdeb5a99
@ -1 +1 @@
|
|||||||
5.8.29
|
5.8.30
|
@ -271,7 +271,7 @@ class BaseRule implements RuleInterface
|
|||||||
public function isTaxableRegion(): bool
|
public function isTaxableRegion(): bool
|
||||||
{
|
{
|
||||||
return $this->client->company->tax_data->regions->{$this->client_region}->tax_all_subregions ||
|
return $this->client->company->tax_data->regions->{$this->client_region}->tax_all_subregions ||
|
||||||
(property_exists($this->client->company->tax_data->regions->{$this->client_region}->subregions, $this->client_subregion) && $this->client->company->tax_data->regions->{$this->client_region}->subregions->{$this->client_subregion}->apply_tax);
|
(property_exists($this->client->company->tax_data->regions->{$this->client_region}->subregions, $this->client_subregion) && ($this->client->company->tax_data->regions->{$this->client_region}->subregions->{$this->client_subregion}->apply_tax ?? false));
|
||||||
}
|
}
|
||||||
|
|
||||||
public function defaultForeign(): self
|
public function defaultForeign(): self
|
||||||
|
@ -164,7 +164,7 @@ class PaymentFilters extends QueryFilters
|
|||||||
{
|
{
|
||||||
$sort_col = explode('|', $sort);
|
$sort_col = explode('|', $sort);
|
||||||
|
|
||||||
if (!is_array($sort_col) || count($sort_col) != 2 || !in_array($sort_col, Schema::getColumnListing('payments'))) {
|
if (!is_array($sort_col) || count($sort_col) != 2 || !in_array($sort_col[0], Schema::getColumnListing('payments'))) {
|
||||||
return $this->builder;
|
return $this->builder;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -50,7 +50,7 @@ class UserFilters extends QueryFilters
|
|||||||
{
|
{
|
||||||
$sort_col = explode('|', $sort);
|
$sort_col = explode('|', $sort);
|
||||||
|
|
||||||
if (!is_array($sort_col) || count($sort_col) != 2 || !in_array($sort_col, \Illuminate\Support\Facades\Schema::getColumnListing('users'))) {
|
if (!is_array($sort_col) || count($sort_col) != 2 || !in_array($sort_col[0], \Illuminate\Support\Facades\Schema::getColumnListing('users'))) {
|
||||||
return $this->builder;
|
return $this->builder;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -17,8 +17,8 @@ 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', 'invoicing.co'),
|
'app_domain' => env('APP_DOMAIN', 'invoicing.co'),
|
||||||
'app_version' => env('APP_VERSION', '5.8.29'),
|
'app_version' => env('APP_VERSION', '5.8.30'),
|
||||||
'app_tag' => env('APP_TAG', '5.8.29'),
|
'app_tag' => env('APP_TAG', '5.8.30'),
|
||||||
'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),
|
||||||
|
@ -19,7 +19,7 @@ return new class extends Migration
|
|||||||
$table->text('smtp_username')->nullable();
|
$table->text('smtp_username')->nullable();
|
||||||
$table->text('smtp_password')->nullable();
|
$table->text('smtp_password')->nullable();
|
||||||
$table->string('smtp_local_domain')->nullable();
|
$table->string('smtp_local_domain')->nullable();
|
||||||
$table->boolean('smtp_verify_peer')->default(0);
|
$table->boolean('smtp_verify_peer')->default(true);
|
||||||
});
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user