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";
|