diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 8f0ba1c7962bb7077ddde4086e1cd9811256aed7..4036ac5a9da9049ad8572541a7e192f2e67334f3 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -4,6 +4,7 @@ Feeds 6.x 1.0 xxxxx xx, 2010-xx-xx ---------------------------------- +- alex_b: Fix a typo in the return value of process() in FeedsTermProcessor. - alex_b: Stop PubSubHubbub from subscribing if it is not enabled. - #711664 neclimdul: guarantee compatibility with CTools 1.4 by declaring that Feeds uses hooks to define plugins via hook_ctools_plugin_plugins(). diff --git a/plugins/FeedsTermProcessor.inc b/plugins/FeedsTermProcessor.inc index 5c7bfe3618eaaff79c9c3face1f6612b090b465a..8aa33d3d059b8731a11585149f916e178daaabe5 100644 --- a/plugins/FeedsTermProcessor.inc +++ b/plugins/FeedsTermProcessor.inc @@ -70,7 +70,7 @@ class FeedsTermProcessor extends FeedsProcessor { drupal_set_message(t('There are no new terms.')); } - return FEEDS_NODE_BATCH_SIZE; + return FEEDS_BATCH_COMPLETE; } /**