From 3683a9a84e7b0e0079bed46ba8ff3c7b71494946 Mon Sep 17 00:00:00 2001 From: Aidan Saunders <aidan.saunders@squiffle.uk> Date: Mon, 15 Apr 2019 14:12:38 +0100 Subject: [PATCH] Update hook_civicrm_contact_get_displayname.md Fix typo --- docs/hooks/hook_civicrm_contact_get_displayname.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/hooks/hook_civicrm_contact_get_displayname.md b/docs/hooks/hook_civicrm_contact_get_displayname.md index 89b65569..5c845b38 100644 --- a/docs/hooks/hook_civicrm_contact_get_displayname.md +++ b/docs/hooks/hook_civicrm_contact_get_displayname.md @@ -16,7 +16,7 @@ don't want to store this in the database. ## Parameters -- &$disply_name - the current display name, you can change the +- &$display_name - the current display name, you can change the display name by changing the contents of this parameter - $contactId - Contact ID - $objContact - The contact BAO @@ -31,4 +31,4 @@ Below an example of showing the contact ID after the display name function myextension_civicrm_contact_get_displayname(&$display_name, $contactId, $objContact) { $display_name = $display_name . ' - '.$contactId; - } \ No newline at end of file + } -- GitLab