diff --git a/core/modules/taxonomy/taxonomy.module b/core/modules/taxonomy/taxonomy.module
index 4778f84d2f5e176f56b2ee664d8fc5ec29aa725b..30eba4061db283d75c6167b97abf849279b8a804 100644
--- a/core/modules/taxonomy/taxonomy.module
+++ b/core/modules/taxonomy/taxonomy.module
@@ -429,7 +429,7 @@ function taxonomy_term_access($op, $term) {
  * Return the vocabulary name given the vocabulary object.
  */
 function taxonomy_admin_vocabulary_title_callback(Vocabulary $vocabulary) {
-  return check_plain($vocabulary->name);
+  return $vocabulary->name;
 }
 
 /**