Skip to content

Commit ee27f6c

Browse files
committed
Fix vCard block
1 parent 16010aa commit ee27f6c

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

blocks/vcard/form.blade.php

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
$middleName = $data->middle_name;
1212
$lastName = $data->last_name;
1313
$suffix = $data->suffix;
14-
$nickname = $data->nickname;
1514
$organization = $data->organization;
1615
$vtitle = $data->vtitle;
1716
$role = $data->role;

blocks/vcard/handler.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ function handleLinkType($request, $linkType) {
1313

1414
// Extract the necessary data from the request
1515
$data = $request->only([
16-
'prefix', 'first_name', 'middle_name', 'last_name', 'suffix', 'nickname',
16+
'prefix', 'first_name', 'middle_name', 'last_name', 'suffix',
1717
'organization', 'vtitle', 'role', 'work_url', 'email', 'work_email',
1818
'home_phone', 'work_phone', 'cell_phone', 'home_address_label', 'home_address_street',
1919
'home_address_city', 'home_address_state', 'home_address_zip', 'home_address_country',

0 commit comments

Comments
 (0)