diff options
author | Gábor Hojtsy | 2010-06-02 18:52:32 (GMT) |
---|---|---|
committer | Gábor Hojtsy | 2010-06-02 18:52:32 (GMT) |
commit | a09fcca0294ef62ba7b1c7ec2af2980f0a39d3e1 (patch) | |
tree | cdaadbf4db223f06a0e6f2752e3f5d2320336d4c | |
parent | a778c9404670702a414c7a5b53a01128bc28a241 (diff) |
Drupal 6.176.17
-rw-r--r-- | CHANGELOG.txt | 8 | ||||
-rw-r--r-- | includes/common.inc | 2 | ||||
-rw-r--r-- | modules/system/system.module | 2 |
3 files changed, 9 insertions, 3 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt index f5d4f0c..02a239e 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,7 +1,13 @@ // $Id$ -Drupal 6.17-dev, xxxx-xx-xx (development release) +Drupal 6.17, 2010-06-02 ---------------------- +- Improved PostgreSQL compatibility +- Better PHP 5.3 and PHP 4 compatibility +- Better browser compatibility of CSS and JS aggregation +- Improved logging for login failures +- Fixed an incompatibility with some contributed modules and the locking system +- Fixed a variety of other bugs. Drupal 6.16, 2010-03-03 ---------------------- diff --git a/includes/common.inc b/includes/common.inc index 3fb5577..0ca24f9 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -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 diff --git a/modules/system/system.module b/modules/system/system.module index 9820699..9c54a60 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -9,7 +9,7 @@ /** * The current system version. */ -define('VERSION', '6.17-dev'); +define('VERSION', '6.17'); /** * Core API compatibility. |