### Eclipse Workspace Patch 1.0 #P lyrics-vu Index: sites/all/modules/imagefield/imagefield_widget.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/imagefield/imagefield_widget.inc,v retrieving revision 1.21 diff -u -r1.21 imagefield_widget.inc --- sites/all/modules/imagefield/imagefield_widget.inc 27 Aug 2008 14:53:56 -0000 1.21 +++ sites/all/modules/imagefield/imagefield_widget.inc 3 Sep 2008 09:15:11 -0000 @@ -70,7 +70,7 @@ '#title' => t('Default ALT text'), '#default_value' => !empty($widget['alt']) ? $widget['alt'] : '', '#description' => t('This value will be used for alternate text by default.'), - '#suffix' => theme('token_help', 'file'), + '#suffix' => theme('token_help', 'node'), ); $form['title_settings'] = array( @@ -93,7 +93,7 @@ '#title' => t('Default Title text'), '#default_value' => !empty($widget['title']) ? $widget['title'] : '', '#description' => t('This value will be used as the image title by default.'), - '#suffix' => theme('token_help', 'file'), + '#suffix' => theme('token_help', 'node'), ); return $form; }