summaryrefslogtreecommitdiff
path: root/modules/taxonomy
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2008-10-12 06:27:06 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2008-10-12 06:27:06 +0000
commita3a420c3e6f3805a91448c877a8a423f7232198c (patch)
tree355650769d2e533c6dc6c6d38ad057cca622b727 /modules/taxonomy
parentf76acb2d9d421ff705be6fd2713b8cc2c007e1df (diff)
downloadbrdo-a3a420c3e6f3805a91448c877a8a423f7232198c.tar.gz
brdo-a3a420c3e6f3805a91448c877a8a423f7232198c.tar.bz2
Roll-back of #242873: This caused horrendous problems with SimpleTest on some configurations.
Diffstat (limited to 'modules/taxonomy')
-rw-r--r--modules/taxonomy/taxonomy.pages.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/taxonomy/taxonomy.pages.inc b/modules/taxonomy/taxonomy.pages.inc
index e72c8a207..6e6b9af2b 100644
--- a/modules/taxonomy/taxonomy.pages.inc
+++ b/modules/taxonomy/taxonomy.pages.inc
@@ -112,7 +112,7 @@ function theme_taxonomy_term_page($tids, $result) {
*/
function taxonomy_term_edit($term) {
if (isset($term)) {
- drupal_set_title($term->name);
+ drupal_set_title(check_plain($term->name));
return drupal_get_form('taxonomy_form_term', taxonomy_vocabulary_load($term->vid), (array)$term);
}
return drupal_not_found();