Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
19b2687a
Commit
19b2687a
authored
Oct 17, 2007
by
Gábor Hojtsy
Browse files
Back to being a 6.x development version
parent
a3f3cb34
Changes
3
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.txt
View file @
19b2687a
// $Id$
Drupal 6.0
-beta2, 2007-10-17
Drupal 6.0
, xxxx-xx-xx (development version)
----------------------
- New, faster and better menu system.
- New watchdog as a hook functionality.
...
...
includes/common.inc
View file @
19b2687a
...
...
@@ -557,7 +557,7 @@ function drupal_error_handler($errno, $message, $filename, $line, $context) {
return
;
}
if
(
$errno
&
(
E_ALL
^
E_NOTICE
))
{
if
(
$errno
&
(
E_ALL
))
{
$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
...
...
modules/system/system.module
View file @
19b2687a
...
...
@@ -6,7 +6,7 @@
* Configuration system that lets administrators modify the workings of the site.
*/
define
(
'VERSION'
,
'6.0-
beta2
'
);
define
(
'VERSION'
,
'6.0-
dev
'
);
define
(
'DRUPAL_CORE_COMPATIBILITY'
,
'6.x'
);
define
(
'DRUPAL_MINIMUM_PHP'
,
'4.3.3'
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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