summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-05-26 10:41:06 +0000
committerDries Buytaert <dries@buytaert.net>2009-05-26 10:41:06 +0000
commit7e36364c5cdd059dfb209d50473eb0f8ca4dc5e0 (patch)
tree10ed694d0ce1c749bd3238022a96e8fd302abb85 /includes
parent981d6ec40c88364b99cab27a434301bdf31f7bb8 (diff)
downloadbrdo-7e36364c5cdd059dfb209d50473eb0f8ca4dc5e0.tar.gz
brdo-7e36364c5cdd059dfb209d50473eb0f8ca4dc5e0.tar.bz2
- Patch #465190 by Heine: add check_plain() call.
Diffstat (limited to 'includes')
-rw-r--r--includes/theme.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/theme.inc b/includes/theme.inc
index 88ebb240a..3dd681033 100644
--- a/includes/theme.inc
+++ b/includes/theme.inc
@@ -1715,7 +1715,7 @@ function theme_username($object) {
}
}
else {
- $output = variable_get('anonymous', t('Anonymous'));
+ $output = check_plain(variable_get('anonymous', t('Anonymous')));
}
return $output;