Index: emfield.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/emfield/emfield.module,v
retrieving revision 1.23
diff -b -u -p -r1.23 emfield.module
--- emfield.module	23 May 2008 18:49:14 -0000	1.23
+++ emfield.module	26 May 2008 10:59:05 -0000
@@ -1,5 +1,5 @@
 <?php
-// $Id: emfield.module,v 1.23 2008/05/23 18:49:14 alexua Exp $
+// $Id: emfield.module,v 1.22 2008/05/12 04:10:54 alexua Exp $
 
 /**
  * Implement hook_menu
@@ -391,11 +391,12 @@ function emfield_emfield_widget($op, &$n
       else {
         $textfield_description = t('Enter the URL or Embed Code here. The embedded third party content will be parsed and displayed appropriately from this.');
       }
-      $textfield_description .= '<br />'. t('The following services are provided: !urls', array('!urls' => implode(', ', $urls)));
+      $provider_list = t('The following services are provided: !urls', array('!urls' => implode(', ', $urls)));
 
       if ($field['multiple']) {
         $form[$field['field_name']]['#type'] = 'fieldset';
         $form[$field['field_name']]['#title'] = t($field['widget']['label']);
+        $form[$field['field_name']]['#description'] = $provider_list;
         $delta = 0;
         foreach ($node_field as $data) {
           if (isset($data[$textfield])) {
@@ -456,7 +457,7 @@ function emfield_emfield_widget($op, &$n
         $form[$field['field_name']][0][$textfield] = array(
           '#type' => 'textfield',
           '#title' => $textfield_title, //t($field['widget']['label']),
-          '#description' => $textfield_description,
+          '#description' => $textfield_description .'<br />'. $provider_list,
           '#default_value' => isset($node_field[0][$textfield]) ? $node_field[0][$textfield] : '',
           '#required' => $field['required'],
           '#maxlength' => 2048,
