From deca1766cc30af3b3689013dfc80f1274cf4b547 Mon Sep 17 00:00:00 2001 From: Brandon Weigel Date: Mon, 12 Mar 2018 19:08:00 +0000 Subject: [PATCH] Fix pid undefined constant --- includes/orphaned_objects.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/orphaned_objects.inc b/includes/orphaned_objects.inc index 40964f8b..1e063ffb 100644 --- a/includes/orphaned_objects.inc +++ b/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'], ));