From eb32faf725810dad42195f844c9e8f3bbb5730be Mon Sep 17 00:00:00 2001 From: Nate Jones Date: Mon, 16 Mar 2015 20:04:38 +0000 Subject: [PATCH] Contacts: Fixed URLs and Emails not displaying the Description in list view. --- app/contacts/contact_emails.php | 2 +- app/contacts/contact_urls.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/contacts/contact_emails.php b/app/contacts/contact_emails.php index 1f745889a8..c9fc98d792 100644 --- a/app/contacts/contact_emails.php +++ b/app/contacts/contact_emails.php @@ -108,7 +108,7 @@ require_once "resources/paging.php"; echo "\n"; echo " ".$row['email_label']." \n"; echo " ".$row['email_address']." \n"; - echo " ".$row['address_description']." \n"; + echo " ".$row['email_description']." \n"; echo " "; echo "$v_link_label_edit"; echo "$v_link_label_delete"; diff --git a/app/contacts/contact_urls.php b/app/contacts/contact_urls.php index 6c7999ccc2..f0db891e80 100644 --- a/app/contacts/contact_urls.php +++ b/app/contacts/contact_urls.php @@ -108,7 +108,7 @@ require_once "resources/paging.php"; echo "\n"; echo " ".$row['url_label']." \n"; echo " ".str_replace("http://", "", str_replace("https://", "", $row['url_address']))." \n"; - echo " ".$row['address_description']." \n"; + echo " ".$row['url_description']." \n"; echo " "; echo "$v_link_label_edit"; echo "$v_link_label_delete";