From 31e733420e4747a02bd8fe1581b3f1532c05c2a4 Mon Sep 17 00:00:00 2001 From: catch <catch@35733.no-reply.drupal.org> Date: Tue, 5 Jun 2012 14:44:58 +0900 Subject: [PATCH] Issue #1555294 by cristinawithout, gagarine: Fixed Vocabulary title HTML entities are double encoded. --- core/modules/taxonomy/taxonomy.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/taxonomy/taxonomy.module b/core/modules/taxonomy/taxonomy.module index 4778f84d2f5e..30eba4061db2 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; } /** -- GitLab