mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-08 11:04:30 -04:00
Prevent creating client without contacts
This commit is contained in:
parent
b32b141f63
commit
d68b13018b
@ -116,7 +116,7 @@ class ClientRepository extends BaseRepository
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
$first = true;
|
$first = true;
|
||||||
$contacts = isset($data['contact']) ? [$data['contact']] : $data['contacts'];
|
$contacts = isset($data['contact']) ? [$data['contact']] : (isset($data['contacts']) ? $data['contacts'] : [[]]);
|
||||||
$contactIds = [];
|
$contactIds = [];
|
||||||
|
|
||||||
// If the primary is set ensure it's listed first
|
// If the primary is set ensure it's listed first
|
||||||
|
Loading…
x
Reference in New Issue
Block a user