Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
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
project
drupal
Commits
2f6a7143
Commit
2f6a7143
authored
16 years ago
by
Angie Byron
Browse files
Options
Downloads
Patches
Plain Diff
#308834
follow-up by gpk: Comment improvements.
parent
3a5f422c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!7452
Issue #1797438. HTML5 validation is preventing form submit and not fully...
,
!789
Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
includes/bootstrap.inc
+5
-5
5 additions, 5 deletions
includes/bootstrap.inc
sites/default/default.settings.php
+1
-1
1 addition, 1 deletion
sites/default/default.settings.php
with
6 additions
and
6 deletions
includes/bootstrap.inc
+
5
−
5
View file @
2f6a7143
...
...
@@ -395,13 +395,13 @@ function drupal_initialize_variables() {
// Enforce E_ALL, but allow users to set levels not part of E_ALL.
error_reporting
(
E_ALL
|
error_reporting
());
// Override PHP settings required for Drupal to work properly.
The .htaccess
//
file contains settings that cannot be changed at runtime. See
//
sites/default/default.settings.php for more non-runtime settings
.
// Override PHP settings required for Drupal to work properly.
//
sites/default/default.settings.php contains more runtime settings.
//
The .htaccess file contains settings that cannot be changed at runtime
.
// Prevent PHP from generating HTML error
s
messages.
// Prevent PHP from generating HTML error messages.
ini_set
(
'html_errors'
,
0
);
// Don't escape quotes when reading files from disk etc.
// Don't escape quotes when reading files from
the database,
disk
,
etc.
ini_set
(
'magic_quotes_runtime'
,
'0'
);
}
...
...
This diff is collapsed.
Click to expand it.
sites/default/default.settings.php
+
1
−
1
View file @
2f6a7143
...
...
@@ -189,7 +189,7 @@
* PHP settings:
*
* To see what PHP settings are possible, including whether they can be set at
* runtime (
i.e., when
ini_set()
occurs
), read the PHP documentation:
* runtime (
by using
ini_set()), read the PHP documentation:
* http://www.php.net/manual/en/ini.php#ini.list
* See drupal_initialize_variables() in includes/bootstrap.inc for required
* runtime settings and the .htaccess file for non-runtime settings. Settings
...
...
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