Browse Source

Fix where the context failed to get passed.

pull/306/head
Adam Vessey 12 years ago
parent
commit
f9586f9f9b
  1. 2
      includes/breadcrumb.inc

2
includes/breadcrumb.inc

@ -91,7 +91,7 @@ function islandora_get_breadcrumbs_recursive($pid, FedoraRepository $repository,
// Add an non-link, as we don't know how to get back to the root, and // Add an non-link, as we don't know how to get back to the root, and
// render the last two links and break (on the next pass). // render the last two links and break (on the next pass).
return array_merge( return array_merge(
islandora_get_breadcrumbs_recursive($root, $repository), islandora_get_breadcrumbs_recursive($root, $repository, $context),
array( array(
'...', '...',
) )

Loading…
Cancel
Save