Skip to content
Snippets Groups Projects
Commit 9b9bb8d9 authored by Alex Barth's avatar Alex Barth
Browse files

#905820 tristan.oneil: Adjust delete message in FeedsDataProcessor to avoid...

#905820 tristan.oneil: Adjust delete message in FeedsDataProcessor to avoid misleading total numbers.
parent 7b42789a
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,8 @@
Feeds 6.x 1.0 XXXXXXXXXXXXXXXXXX
--------------------------------
- #905820 tristan.oneil: Adjust delete message in FeedsDataProcessor to avoid
misleading total numbers.
- #671538 mburak: Use CURLOPT_TIMEOUT to limit download time of feeds.
- #878002 Will White, David Goode: Support multiple sources per mapping target
in FeedsDataProcessor.
......
......@@ -72,7 +72,7 @@ class FeedsDataProcessor extends FeedsProcessor {
'feed_nid' => $source->feed_nid,
);
$num = $this->handler()->delete($clause);
drupal_set_message(format_plural($num, 'Deleted @number item.', 'Deleted @number items.', array('@number' => $num)));
drupal_set_message('All items of this feed have been deleted.');
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment