From 160e652819ae49e9e72f460b3cc0090b0a0d9c76 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Wed, 6 May 2009 11:27:47 +0000 Subject: - Patch #370276 by JamesAn: improved help text of authoring field. --- modules/node/node.pages.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/node') 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)) { -- cgit v1.2.3