--- office_hours.elements.inc.orig 2009-11-08 20:27:01.140625000 +0100 +++ office_hours.elements.inc 2009-11-08 20:47:23.765625000 +0100 @@ -45,11 +45,11 @@ function office_hours_field_process($ele $field_endhrs = $element['#columns'][2]; $days = date_week_days_untranslated(); if (!($element['#weight'] & 1)) { //first cell - $element['#prefix'] = '
'.t($days[$day]); + $element['#prefix'] = '
'. t($days[$day]) .'
'; } elseif ($field['addhrs']) { // second cell, we're supposed to show the 'add hours link' - $link = l(t('Add more hours'),'office-hours-add',array('attributes' => array('class'=>'oh-add-more-link'))).'
'.t('And from'); - $element['#prefix'] = isset($element['#value'][$field_strhrs]) ? '
'.t('And from') : $link; + $link = l(t('Add more hours'),'office-hours-add',array('attributes' => array('class'=>'oh-add-more-link'))).'
'. t('And') .'
'; + $element['#prefix'] = isset($element['#value'][$field_strhrs]) ? '
'. t('And') .'
' : $link; } else { //this is the second cell and were not showing it- better clear it (in case a value was entered before). $element['#prefix'] = "
";