Index: textimage.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/textimage/textimage.module,v retrieving revision 1.19.2.2 diff -u -p -r1.19.2.2 textimage.module --- textimage.module 16 Dec 2008 07:24:04 -0000 1.19.2.2 +++ textimage.module 3 Feb 2009 03:31:38 -0000 @@ -821,7 +821,7 @@ function textimage_field_formatter_info( foreach (textimage_get_presets() as $preset) { $formatters[$preset['name']] = array( 'label' => t('Textimage:') .' '. $preset['name'], - 'field types' => array('text'), + 'field types' => array('text', 'email'), ); } @@ -832,6 +832,8 @@ function textimage_field_formatter_info( * Implementation of hook_field_formatter(). */ function textimage_field_formatter($field, $item, $formatter, $node) { + if ($formatter == 'email') + $item['value'] =& $item['email']; return theme('textimage_image', $formatter, $item['value'], array(), 'png', $item['value'], $item['value']); }