Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Administrator
Drupal
Commits
a7c068b9
Commit
a7c068b9
authored
16 years ago
by
Gábor Hojtsy
Browse files
Options
Download
Email Patches
Plain Diff
Drupal 6.10
parent
5c571dc0
6.x-18-security
6.x
6.28
6.27
6.26
6.25
6.24
6.23
6.22
6.21
6.20
6.19
6.18
6.17
6.16
6.15
6.14
6.13
6.12
6.11
6.10
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.txt
+5
-1
CHANGELOG.txt
includes/common.inc
+1
-1
includes/common.inc
modules/system/system.module
+1
-1
modules/system/system.module
with
7 additions
and
3 deletions
+7
-3
CHANGELOG.txt
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
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
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.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help