diff --git a/core/modules/field/field.purge.inc b/core/modules/field/field.purge.inc index 50fe077..5ab55ef 100644 --- a/core/modules/field/field.purge.inc +++ b/core/modules/field/field.purge.inc @@ -80,6 +80,7 @@ function field_purge_batch($batch_size) { // We cannot purge anything if the entity type is unknown (e.g. the // providing module was uninstalled). + // @todo Revisit after https://drupal.org/node/2080823. if (!isset($info[$entity_type])) { continue; } @@ -126,6 +127,7 @@ function field_purge_batch($batch_size) { // We cannot purge anything if the entity type is unknown (e.g. the // providing module was uninstalled). + // @todo Revisit after https://drupal.org/node/2080823. if (!isset($info[$field->entity_type])) { continue; }