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

Prevent creating client without contacts

This commit is contained in:
Hillel Coren 2017-05-26 11:03:52 +03:00
parent b32b141f63
commit d68b13018b

View File

@ -116,7 +116,7 @@ class ClientRepository extends BaseRepository
*/
$first = true;
$contacts = isset($data['contact']) ? [$data['contact']] : $data['contacts'];
$contacts = isset($data['contact']) ? [$data['contact']] : (isset($data['contacts']) ? $data['contacts'] : [[]]);
$contactIds = [];
// If the primary is set ensure it's listed first