Skip to content

Commit 9260bc4

Browse files
committed
Drupal 6.26
1 parent 79d32fc commit 9260bc4

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11

2-
Drupal 6.26-dev, xxxx-xx-xx (development release)
2+
Drupal 6.26, 2012-05-02
33
----------------------
4+
- Fixed a small number of bugs.
5+
- Made code documentation improvements.
46

57
Drupal 6.25, 2012-02-29
68
----------------------

includes/common.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -663,7 +663,7 @@ function drupal_error_handler($errno, $message, $filename, $line, $context) {
663663
return;
664664
}
665665

666-
if ($errno & (E_ALL ^ E_DEPRECATED)) {
666+
if ($errno & (E_ALL ^ E_DEPRECATED ^ E_NOTICE)) {
667667
$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');
668668

669669
// For database errors, we want the line number/file name of the place that

modules/system/system.module

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/**
99
* The current system version.
1010
*/
11-
define('VERSION', '6.26-dev');
11+
define('VERSION', '6.26');
1212

1313
/**
1414
* Core API compatibility.

0 commit comments

Comments
 (0)