diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-10-13 00:33:05 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-10-13 00:33:05 +0000 |
commit | 8292bdd40ab3a9e70d44dad0e681d0222c1556cb (patch) | |
tree | 7e66d08bef9b38acd705e9e918129083435af3b8 /modules/forum | |
parent | 448640f1380c39ec3be39791d7efb449f150e1ed (diff) | |
download | brdo-8292bdd40ab3a9e70d44dad0e681d0222c1556cb.tar.gz brdo-8292bdd40ab3a9e70d44dad0e681d0222c1556cb.tar.bz2 |
Re-commit of #242873 by pwolanin and bjaspan: Make drupal_set_title() check_plain() by default.
Diffstat (limited to 'modules/forum')
-rw-r--r-- | modules/forum/forum.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/forum/forum.module b/modules/forum/forum.module index 1ad242382..99083e895 100644 --- a/modules/forum/forum.module +++ b/modules/forum/forum.module @@ -723,7 +723,7 @@ function template_preprocess_forums(&$variables) { } } drupal_set_breadcrumb($breadcrumb); - drupal_set_title(check_plain($title)); + drupal_set_title($title); if ($variables['forums_defined'] = count($variables['forums']) || count($variables['parents'])) { // Format the "post new content" links listing. @@ -784,7 +784,7 @@ function template_preprocess_forums(&$variables) { } else { - drupal_set_title(t('No forums defined')); + drupal_set_title(t('No forums defined'), PASS_THROUGH); $variables['links'] = array(); $variables['forums'] = ''; $variables['topics'] = ''; |