1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-08 20:22:42 +01:00

Minor fixes

This commit is contained in:
David Bomba 2024-08-06 19:21:42 +10:00
parent 2f03a13d34
commit 19cfee10a0
4 changed files with 5 additions and 5 deletions

View File

@ -1 +1 @@
5.10.18
5.10.19

View File

@ -361,7 +361,7 @@ class BillingPortalPurchase extends Component
if($is_paypal && !$this->steps['check_rff'])
$this->rff();
elseif(!$is_paypal && !$this->steps['check_rff'])
elseif(!$this->steps['check_rff'])
$this->steps['fetched_payment_methods'] = true;
$this->heading_text = ctrans('texts.payment_methods');

View File

@ -484,7 +484,7 @@ class BillingPortalPurchasev2 extends Component
$this->methods = [];
}
if ($this->contact && $this->float_amount_total >= 1) {
if ($this->contact && $this->float_amount_total >= 0) {
$this->methods = $this->contact->client->service()->getPaymentMethods($this->float_amount_total);
}

View File

@ -17,8 +17,8 @@ return [
'require_https' => env('REQUIRE_HTTPS', true),
'app_url' => rtrim(env('APP_URL', ''), '/'),
'app_domain' => env('APP_DOMAIN', 'invoicing.co'),
'app_version' => env('APP_VERSION', '5.10.18'),
'app_tag' => env('APP_TAG', '5.10.18'),
'app_version' => env('APP_VERSION', '5.10.19'),
'app_tag' => env('APP_TAG', '5.10.19'),
'minimum_client_version' => '5.0.16',
'terms_version' => '1.0.1',
'api_secret' => env('API_SECRET', false),