diff --git a/feeds.pages.inc b/feeds.pages.inc index 424de6b069ccf7a24bd2fa1ce0461f54e3ee0dfe..44b244adff2267f6b8aaab1a62ef5cb23e47fb14 100644 --- a/feeds.pages.inc +++ b/feeds.pages.inc @@ -178,5 +178,8 @@ function theme_feeds_upload($variables) { $description .= '<input type="file" name="'. $element['#name'] .'"'. ($element['#attributes'] ? ' '. drupal_attributes($element['#attributes']) : '') .' id="'. $element['#id'] .'" size="'. $element['#size'] ."\" />\n"; $description .= '</div>'; $element['#description'] = $description; + + // For some reason not unsetting #title leads to printing the title twice. + unset($element['#title']); return theme('form_element', $element); }