Browse Source

ISLANDORA-244 moved superfluous closing div tag

pull/105/head
Alan Stanley 14 years ago
parent
commit
16b567540b
  1. 2
      ObjectHelper.inc
  2. 2
      fedora_repository.module

2
ObjectHelper.inc

@ -345,7 +345,7 @@ class ObjectHelper {
}
$xsl = $proc->importStylesheet($xsl);
$newdom = $proc->transformToDoc($input);
$output = $newdom->saveXML();
$output = $newdom->saveHTML();
return $output;
}

2
fedora_repository.module

@ -815,7 +815,7 @@ function fedora_repository_get_items($pid = NULL, $dsId = NULL, $collection = NU
//the below is for islandlives we should be able to do this in the xslt though
//$css=$path.'/stylesheets/container-large.css';
//drupal_add_css($css);
return tabs_render($cmodels_tabs) . '</div>';
return tabs_render($cmodels_tabs);
}
function fedora_repository_urlencode_string($str) {

Loading…
Cancel
Save