Skip to content
Snippets Groups Projects
Commit 404994e8 authored by Angie Byron's avatar Angie Byron
Browse files

#242873 follow-up: Missed adding constants to bootstrap.inc.

parent 8292bdd4
No related branches found
No related tags found
No related merge requests found
......@@ -185,6 +185,27 @@
*/
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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment