Browse Source

ISLANDORA-171 removed fieldset around collection.

pull/105/head
Alexander O'Neill 14 years ago
parent
commit
d0fc4ad901
  1. 14
      ObjectHelper.inc

14
ObjectHelper.inc

@ -834,19 +834,7 @@ class ObjectHelper {
} else {
drupal_set_message(t("No Objects in this collection or bad query."));
}
$object_list_fieldset = array(
'#title' => t('Items in this collection'),
'#collapsible' => TRUE,
'#collapsed' => FALSE,
'#value' => (isset($objectList) ? $objectList : ''),);
$objectListOut = theme('fieldset', $object_list_fieldset);
$output = $objectListOut . '<br/>';
return $output;
return $objectList;
}

Loading…
Cancel
Save