summaryrefslogtreecommitdiff
path: root/modules/blog
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2008-10-11 21:11:02 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2008-10-11 21:11:02 +0000
commitecf7ad41d0c3b8d4ea12e3883d3b5c9060eb2963 (patch)
tree264c817491a1484683e8adb2a2f47e344ef44717 /modules/blog
parent4002681267044ab1d226ffeade7b8f6fface18ae (diff)
downloadbrdo-ecf7ad41d0c3b8d4ea12e3883d3b5c9060eb2963.tar.gz
brdo-ecf7ad41d0c3b8d4ea12e3883d3b5c9060eb2963.tar.bz2
#242873 by pwolanin and bjaspan: Make drupal_set_title() do check_plain() by default.
Diffstat (limited to 'modules/blog')
-rw-r--r--modules/blog/blog.pages.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/blog/blog.pages.inc b/modules/blog/blog.pages.inc
index 042b089ed..2deb15cef 100644
--- a/modules/blog/blog.pages.inc
+++ b/modules/blog/blog.pages.inc
@@ -12,7 +12,7 @@
function blog_page_user($account) {
global $user;
- drupal_set_title($title = t("@name's blog", array('@name' => $account->name)));
+ drupal_set_title($title = t("@name's blog", array('@name' => $account->name)), PASS_THROUGH);
$items = array();