Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal-3398767
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-3398767
Commits
a7c068b9
Commit
a7c068b9
authored
15 years ago
by
Gábor Hojtsy
Browse files
Options
Downloads
Patches
Plain Diff
Drupal 6.10
parent
5c571dc0
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.txt
+5
-1
5 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
7 additions
and
3 deletions
CHANGELOG.txt
+
5
−
1
View file @
a7c068b9
// $Id$
Drupal 6.10
-dev, xxxx-xx-xx (development release)
Drupal 6.10
, 2009-02-25
----------------------
- Fixed a security issue, (Local file inclusion on Windows),
see SA-CORE-2009-003
- Fixed node_feed() so custom fields can show up in RSS feeds.
- Improved PostgreSQL compatibility.
- Fixed a variety of small bugs.
Drupal 6.9, 2009-01-14
----------------------
...
...
This diff is collapsed.
Click to expand it.
includes/common.inc
+
1
−
1
View file @
a7c068b9
...
...
@@ -577,7 +577,7 @@ function drupal_error_handler($errno, $message, $filename, $line, $context) {
return
;
}
if
(
$errno
&
(
E_ALL
))
{
if
(
$errno
&
(
E_ALL
^
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 @
a7c068b9
...
...
@@ -9,7 +9,7 @@
/**
* The current system version.
*/
define
(
'VERSION'
,
'6.10
-dev
'
);
define
(
'VERSION'
,
'6.10'
);
/**
* 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
register
or
sign in
to comment