Marking code as beta 1 in preparation of the first beta release of Drupal 6, also add back E_NOTICE removal for the release.

6.x 6.0-beta-1
Gábor Hojtsy 2007-09-14 20:08:59 +00:00
parent 23778cc0c0
commit 86a6cd4ef3
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
// $Id$
Drupal 6.0, xxxx-xx-xx (development version)
Drupal 6.0 beta 1, 2007-09-14
----------------------
- New, faster and better menu system.
- New watchdog as a hook functionality.

View File

@ -543,7 +543,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');
// For database errors, we want the line number/file name of the place that

View File

@ -6,7 +6,7 @@
* Configuration system that lets administrators modify the workings of the site.
*/
define('VERSION', '6.0-dev');
define('VERSION', '6.0-beta1');
define('DRUPAL_CORE_COMPATIBILITY', '6.x');
define('DRUPAL_MINIMUM_PHP', '4.3.3');