diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-11-24 09:01:57 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-11-24 09:01:57 +0000 |
commit | d721a4f0d974f93d04db19c8d1c107b9d24dd3f5 (patch) | |
tree | 33a479695c635ff1d17037e545278ec680f6451b /modules/node | |
parent | a895b149327ab4c905fc73d87199bc8268c63916 (diff) | |
download | brdo-d721a4f0d974f93d04db19c8d1c107b9d24dd3f5.tar.gz brdo-d721a4f0d974f93d04db19c8d1c107b9d24dd3f5.tar.bz2 |
- Patch #98365 by webchick and RobRoy: added missing t() functions.
Diffstat (limited to 'modules/node')
-rw-r--r-- | modules/node/node.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index 57c8c85c7..3e776427f 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -1974,7 +1974,7 @@ function node_form($node, $form_values = NULL) { '#collapsed' => TRUE, '#weight' => 20, ); - $form['author']['name'] = array('#type' => 'textfield', '#title' => t('Authored by'), '#maxlength' => 60, '#autocomplete_path' => 'user/autocomplete', '#default_value' => $node->name ? $node->name : '', '#weight' => -1, '#description' => t('Leave blank for %anonymous.', array('%anonymous' => variable_get('anonymous', 'Anonymous')))); + $form['author']['name'] = array('#type' => 'textfield', '#title' => t('Authored by'), '#maxlength' => 60, '#autocomplete_path' => 'user/autocomplete', '#default_value' => $node->name ? $node->name : '', '#weight' => -1, '#description' => t('Leave blank for %anonymous.', array('%anonymous' => variable_get('anonymous', t('Anonymous'))))); $form['author']['date'] = array('#type' => 'textfield', '#title' => t('Authored on'), '#maxlength' => 25, '#description' => t('Format: %time. Leave blank to use the time of form submission.', array('%time' => $node->date))); if (isset($node->nid)) { |