Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal-3443488
Manage
Activity
Members
Labels
Plan
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Issue forks
drupal-3443488
Commits
404994e8
Commit
404994e8
authored
16 years ago
by
Angie Byron
Browse files
Options
Downloads
Patches
Plain Diff
#242873
follow-up: Missed adding constants to bootstrap.inc.
parent
8292bdd4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
includes/bootstrap.inc
+21
-0
21 additions, 0 deletions
includes/bootstrap.inc
with
21 additions
and
0 deletions
includes/bootstrap.inc
+
21
−
0
View file @
404994e8
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment