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
016a8f68
Commit
016a8f68
authored
Feb 08, 2004
by
Kjartan Mannes
Browse files
- Removing timezone fix that crept in.
parent
bc407492
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/node.module
View file @
016a8f68
...
...
@@ -1075,7 +1075,7 @@ function node_validate($node, &$error) {
}
if
(
!
$node
->
date
)
{
$node
->
date
=
format_date
(
$node
->
created
,
'custom'
,
'Y-m-d H:i O'
);
$node
->
date
=
date
(
'M j, Y g:i a'
,
$node
->
created
);
}
if
(
!
is_numeric
(
$node
->
status
))
{
...
...
modules/node/node.module
View file @
016a8f68
...
...
@@ -1075,7 +1075,7 @@ function node_validate($node, &$error) {
}
if
(
!
$node
->
date
)
{
$node
->
date
=
format_date
(
$node
->
created
,
'custom'
,
'Y-m-d H:i O'
);
$node
->
date
=
date
(
'M j, Y g:i a'
,
$node
->
created
);
}
if
(
!
is_numeric
(
$node
->
status
))
{
...
...
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