From bbf813848e621de1de33b803832f3d356093555a Mon Sep 17 00:00:00 2001 From: Alan Stanley Date: Tue, 19 Feb 2013 16:32:53 -0400 Subject: [PATCH] fixed forced reingest --- includes/solution_packs.inc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/includes/solution_packs.inc b/includes/solution_packs.inc index 02952233..e1cf8478 100644 --- a/includes/solution_packs.inc +++ b/includes/solution_packs.inc @@ -186,12 +186,10 @@ function islandora_solution_pack_form_submit(array $form, array &$form_state) { * The context of this batch operation. */ function islandora_solution_pack_batch_operation_reingest_object(NewFedoraObject $object, array &$context) { - $deleted = FALSE; $existing_object = islandora_object_load($object->id); if ($existing_object) { $deleted = islandora_delete_object($existing_object); - $purged = $deleted && $existing_object == NULL; - if (!$purged) { + if (!$deleted) { $object_link = l($existing_object->label, "islandora/object/{$existing_object->id}"); drupal_set_message(t('Failed to purge existing object !object_link.', array( '!object_link' => $object_link,