diff --git a/modules/customer/commerce_customer_ui.module b/modules/customer/commerce_customer_ui.module
index 5f91d39..b42f346 100644
--- a/modules/customer/commerce_customer_ui.module
+++ b/modules/customer/commerce_customer_ui.module
@@ -279,7 +279,7 @@ function commerce_customer_ui_form_alter(&$form, &$form_state, $form_id) {
       // Load the customer profile type being modified for this form.
       $profile_type = commerce_customer_profile_type_load($form['#bundle']);
 
-      drupal_set_title(check_plain($profile_type['name']));
+      drupal_set_title($profile_type['name']);
 
       commerce_customer_ui_set_breadcrumb(TRUE);
     }
diff --git a/modules/line_item/commerce_line_item_ui.module b/modules/line_item/commerce_line_item_ui.module
index c2403a2..c45de6b 100644
--- a/modules/line_item/commerce_line_item_ui.module
+++ b/modules/line_item/commerce_line_item_ui.module
@@ -90,7 +90,7 @@ function commerce_line_item_ui_form_alter(&$form, &$form_state, $form_id) {
       // Load the line item type being modified for this form.
       $line_item_type = commerce_line_item_type_load($form['#bundle']);
 
-      drupal_set_title(check_plain($line_item_type['name']));
+      drupal_set_title($line_item_type['name']);
     }
   }
 }
