diff --git a/modules/contact/contact.admin.inc b/modules/contact/contact.admin.inc index e4496462ea44..929d5ac12ed2 100644 --- a/modules/contact/contact.admin.inc +++ b/modules/contact/contact.admin.inc @@ -24,8 +24,8 @@ function contact_category_list() { // Loop through the categories and add them to the table. foreach ($categories as $category) { $rows[] = array( - $category->category, - $category->recipients, + check_plain($category->category), + check_plain($category->recipients), ($category->selected ? t('Yes') : t('No')), l(t('Edit'), 'admin/structure/contact/edit/' . $category->cid), l(t('Delete'), 'admin/structure/contact/delete/' . $category->cid),