Browse Source

issue-1886: fix undefined variable

pull/850/head
Seth Shaw 4 years ago committed by GitHub
parent
commit
dbe2e76fa2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      modules/islandora_core_feature/islandora_core_feature.install

2
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;
}
}

Loading…
Cancel
Save