summaryrefslogtreecommitdiff
path: root/includes/path.inc
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2008-10-14 11:01:08 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2008-10-14 11:01:08 +0000
commit2dd6e4e0dfdd8d652fac3e394de8d93efef0cc83 (patch)
tree5621fd2f8bde03b3e3f0cb97ffa6cb086c04ea88 /includes/path.inc
parent0a0d530c52209d8c2dbee5bff324606fb876ab40 (diff)
downloadbrdo-2dd6e4e0dfdd8d652fac3e394de8d93efef0cc83.tar.gz
brdo-2dd6e4e0dfdd8d652fac3e394de8d93efef0cc83.tar.bz2
#242873 follow-up: Missed a couple files with drupal_set_title().
Diffstat (limited to 'includes/path.inc')
-rw-r--r--includes/path.inc9
1 files changed, 7 insertions, 2 deletions
diff --git a/includes/path.inc b/includes/path.inc
index 83a7f5b39..2a7c3eac0 100644
--- a/includes/path.inc
+++ b/includes/path.inc
@@ -197,15 +197,20 @@ function drupal_get_title() {
* @param $title
* Optional string value to assign to the page title; or if set to NULL
* (default), leaves the current title unchanged.
+ * @param $output
+ * Optional flag - normally should be left as CHECK_PLAIN. Only set to
+ * PASS_THROUGH if you have already removed any possibly dangerous code
+ * from $title using a function like check_plain() or filter_xss(). With this
+ * flag the string will be passed through unchanged.
*
* @return
* The updated title of the current page.
*/
-function drupal_set_title($title = NULL) {
+function drupal_set_title($title = NULL, $output = CHECK_PLAIN) {
static $stored_title;
if (isset($title)) {
- $stored_title = $title;
+ $stored_title = ($output == PASS_THROUGH) ? $title : check_plain($title);
}
return $stored_title;
}