diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-08-07 15:53:26 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-08-07 15:53:26 +0000 |
commit | 2a87b5029b54353d6e9167e5ddef220d288d813c (patch) | |
tree | d1495a0346ed055a0d7d2e6f613c1620e36cebd9 /modules/node.module | |
parent | 273d7f59b66b355d4398576721fa7cb91f5fa69b (diff) | |
download | brdo-2a87b5029b54353d6e9167e5ddef220d288d813c.tar.gz brdo-2a87b5029b54353d6e9167e5ddef220d288d813c.tar.bz2 |
- Patch #24002: fixed node created timestamp changing on node edit.
Diffstat (limited to 'modules/node.module')
-rw-r--r-- | modules/node.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node.module b/modules/node.module index 6aede8434..cfd770308 100644 --- a/modules/node.module +++ b/modules/node.module @@ -1210,7 +1210,7 @@ function node_validate($node) { } if (!$node->date) { - $node->date = format_date($node->created, 'custom', 'Y-m-d H:i O'); + $node->date = format_date($node->created, 'custom', 'Y-m-d H:i:s O'); } // Validate the "authored by" field. |