From 687d1d12c3305d3856ab60d46b8c298c32dae6eb Mon Sep 17 00:00:00 2001 From: Seth Shaw Date: Fri, 17 Sep 2021 10:07:51 -0700 Subject: [PATCH] fix broken islandora_core_feature_update_8001 --- 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 a8e23d3c..5c1292b2 100644 --- a/modules/islandora_core_feature/islandora_core_feature.install +++ b/modules/islandora_core_feature/islandora_core_feature.install @@ -114,7 +114,7 @@ function islandora_core_feature_update_8001(&$sandbox) { ->orderBy('o.entity_id', 'ASC') ->orderBy('o.revision_id', 'ASC') ->orderBy('o.delta', 'ASC') - ->range($sandbox['progress'], $sandbox['progress'] + $limit); + ->range($sandbox['progress'], $limit); $database->insert($table)->from($query)->execute(); } }