From dbe2e76fa29ed90a5558b1d8f45fc1f327982d7b Mon Sep 17 00:00:00 2001 From: Seth Shaw Date: Fri, 17 Sep 2021 11:25:41 -0700 Subject: [PATCH] issue-1886: fix undefined variable --- modules/islandora_core_feature/islandora_core_feature.install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/islandora_core_feature/islandora_core_feature.install b/modules/islandora_core_feature/islandora_core_feature.install index 5c1292b2..eabd5672 100644 --- a/modules/islandora_core_feature/islandora_core_feature.install +++ b/modules/islandora_core_feature/islandora_core_feature.install @@ -125,7 +125,7 @@ function islandora_core_feature_update_8001(&$sandbox) { // Clean up. foreach ($tables as $table) { $database->schema()->dropTable($table . '_o'); - if ($sandbox['progress'] + $limit >= $progress[$table]['size']) { + if ($sandbox['progress'] + $limit >= $sandbox[$table]['size']) { $sandbox[$table]['done'] = TRUE; } }