Skip to content
Snippets Groups Projects
Commit a7c068b9 authored by Gábor Hojtsy's avatar Gábor Hojtsy
Browse files

Drupal 6.10

parent 5c571dc0
No related branches found
No related tags found
No related merge requests found
// $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
----------------------
......
......@@ -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
......
......@@ -9,7 +9,7 @@
/**
* The current system version.
*/
define('VERSION', '6.10-dev');
define('VERSION', '6.10');
/**
* Core API compatibility.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment