summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-05-06 11:27:47 +0000
committerDries Buytaert <dries@buytaert.net>2009-05-06 11:27:47 +0000
commit160e652819ae49e9e72f460b3cc0090b0a0d9c76 (patch)
tree7a3167c60c377780bf48fb62d3462c92dd8e3501
parent8eebf6d8056cd4671dd491d7c2dc5f83189194f2 (diff)
downloadbrdo-160e652819ae49e9e72f460b3cc0090b0a0d9c76.tar.gz
brdo-160e652819ae49e9e72f460b3cc0090b0a0d9c76.tar.bz2
- Patch #370276 by JamesAn: improved help text of authoring field.
-rw-r--r--modules/node/node.pages.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/node.pages.inc b/modules/node/node.pages.inc
index 49e93cbb2..0de4e9c91 100644
--- a/modules/node/node.pages.inc
+++ b/modules/node/node.pages.inc
@@ -210,7 +210,7 @@ function node_form(&$form_state, $node) {
'#type' => 'textfield',
'#title' => t('Authored on'),
'#maxlength' => 25,
- '#description' => t('Format: %time. Leave blank to use the time of form submission.', array('%time' => !empty($node->date) ? $node->date : format_date($node->created, 'custom', 'Y-m-d H:i:s O'))),
+ '#description' => t('Format: %time. The date format is YYYY-MM-DD and %timezone is the timezone offset from UTC. Leave blank to use the time of form submission.', array('%time' => !empty($node->date) ? $node->date : format_date($node->created, 'custom', 'Y-m-d H:i:s O'), '%timezone' => !empty($node->date) ? $node->date : format_date($node->created, 'custom', 'O'))),
);
if (isset($node->date)) {