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
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Commits
8636b123
Commit
8636b123
authored
Dec 15, 2010
by
Gábor Hojtsy
Browse files
Options
Downloads
Patches
Plain Diff
Drupal 6.20
parent
d2238f09
Branches
Branches containing commit
Tags
6.20
Tags containing commit
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.txt
+2
-1
2 additions, 1 deletion
CHANGELOG.txt
includes/common.inc
+1
-1
1 addition, 1 deletion
includes/common.inc
modules/system/system.module
+1
-1
1 addition, 1 deletion
modules/system/system.module
with
4 additions
and
3 deletions
CHANGELOG.txt
+
2
−
1
View file @
8636b123
// $Id$
Drupal 6.20
-dev, xxxx-xx-xx (development release)
Drupal 6.20
, 2010-12-15
----------------------
- Fixed a variety of small bugs, improved code documentation.
Drupal 6.19, 2010-08-11
----------------------
...
...
This diff is collapsed.
Click to expand it.
includes/common.inc
+
1
−
1
View file @
8636b123
...
...
@@ -631,7 +631,7 @@ function drupal_error_handler($errno, $message, $filename, $line, $context) {
return
;
}
if
(
$errno
&
(
E_ALL
^
E_DEPRECATED
))
{
if
(
$errno
&
(
E_ALL
^
E_DEPRECATED
^
E_NOTICE
))
{
$types
=
array
(
1
=>
'error'
,
2
=>
'warning'
,
4
=>
'parse error'
,
8
=>
'notice'
,
16
=>
'core error'
,
32
=>
'core warning'
,
64
=>
'compile error'
,
128
=>
'compile warning'
,
256
=>
'user error'
,
512
=>
'user warning'
,
1024
=>
'user notice'
,
2048
=>
'strict warning'
,
4096
=>
'recoverable fatal error'
);
// For database errors, we want the line number/file name of the place that
...
...
This diff is collapsed.
Click to expand it.
modules/system/system.module
+
1
−
1
View file @
8636b123
...
...
@@ -9,7 +9,7 @@
/**
* The current system version.
*/
define
(
'VERSION'
,
'6.20
-dev
'
);
define
(
'VERSION'
,
'6.20'
);
/**
* Core API compatibility.
...
...
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
sign in
to comment