Browse Source

Fix pid undefined constant

pull/697/head
Brandon Weigel 7 years ago
parent
commit
deca1766cc
  1. 2
      includes/orphaned_objects.inc

2
includes/orphaned_objects.inc

@ -238,7 +238,7 @@ function islandora_delete_orphaned_objects_batch_operation($pids, &$context) {
$target_object = islandora_object_load($target_pid);
$context['message'] = t('Deleting @label (@pid) (@current of @total)...', array(
'@label' => $target_object->label,
'@pid' => $target_object->pid,
'@pid' => $target_pid,
'@current' => $context['sandbox']['progress'],
'@total' => $context['sandbox']['total'],
));

Loading…
Cancel
Save