diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-10-13 04:06:22 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-10-13 04:06:22 +0000 |
commit | 404994e85f9ca503f94c9a1fce908b637b8020c5 (patch) | |
tree | 39346abb8da2ee39a8411001efa99c1a5b1478a9 /includes | |
parent | 8292bdd40ab3a9e70d44dad0e681d0222c1556cb (diff) | |
download | brdo-404994e85f9ca503f94c9a1fce908b637b8020c5.tar.gz brdo-404994e85f9ca503f94c9a1fce908b637b8020c5.tar.bz2 |
#242873 follow-up: Missed adding constants to bootstrap.inc.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/bootstrap.inc | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc index d07cd7f43..fed5fe4af 100644 --- a/includes/bootstrap.inc +++ b/includes/bootstrap.inc @@ -186,6 +186,27 @@ define('LANGUAGE_NEGOTIATION_DOMAIN', 3); define('REQUEST_TIME', $_SERVER['REQUEST_TIME']); /** + * @name Title text filtering flags + * @{ + * Flags for use in drupal_set_title(). + */ + +/** + * Flag for drupal_set_title(); text is not sanitized, so run check_plain(). + */ +define('CHECK_PLAIN', 0); + +/** + * Flag for drupal_set_title(); text has already been sanitized. + */ +define('PASS_THROUGH', -1); + +/** + * @} End of "Title text filtering flags". + */ + + +/** * Start the timer with the specified name. If you start and stop * the same timer multiple times, the measured intervals will be * accumulated. |