Browse Source

Fixes for Travis... Oops.

pull/306/head
Adam Vessey 12 years ago
parent
commit
068535ce95
  1. 6
      includes/breadcrumb.inc
  2. 2
      islandora.api.php

6
includes/breadcrumb.inc

@ -36,9 +36,7 @@ function islandora_get_breadcrumbs($object) {
* @todo Make fully recursive...
*
* @param string $pid
* THe object id whose parent will be fetched for the next link.
* @param array $breadcrumbs
* The list of existing bread-crumb links in reverse order.
* The object id whose parent will be fetched for the next link.
* @param FedoraRepository $repository
* The fedora repository.
*/
@ -95,7 +93,7 @@ function islandora_get_breadcrumbs_recursive($pid, FedoraRepository $repository,
return array_merge(
islandora_get_breadcrumbs_recursive($root, $repository),
array(
'...'
'...',
)
);
}

2
islandora.api.php

@ -54,13 +54,13 @@ function hook_islandora_view_object_alter(&$object, &$rendered) {
* Alter display output if the object has the given model.
*
* @see hook_islandora_view_object_alter()
*
* @param FedoraObject $object
* A Tuque FedoraObject being operated on.
* @param array $rendered
* An arr of rendered views.
*/
function hook_CMODEL_PID_islandora_view_object_alter(&$object, &$rendered) {
}
/**

Loading…
Cancel
Save