1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00

Merge pull request #9101 from turbo124/v5-develop

v5.8.1
This commit is contained in:
David Bomba 2024-01-04 21:29:57 +11:00 committed by GitHub
commit 03fcda0c9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 4 deletions

View File

@ -1 +1 @@
5.8.0
5.8.1

View File

@ -107,7 +107,12 @@ class PaymentRepository extends BaseRepository
}
/*Fill the payment*/
$payment->fill($data);
$fill_data = $data;
if($this->import_mode && isset($fill_data['invoices']))
unset($fill_data['invoices']);
$payment->fill($fill_data);
$payment->is_manual = true;
$payment->status_id = Payment::STATUS_COMPLETED;

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.7.63'),
'app_tag' => env('APP_TAG', '5.7.63'),
'app_version' => env('APP_VERSION', '5.8.1'),
'app_tag' => env('APP_TAG', '5.8.1'),
'minimum_client_version' => '5.0.16',
'terms_version' => '1.0.1',
'api_secret' => env('API_SECRET', false),