diff --git a/plugins/FeedsNodeProcessor.inc b/plugins/FeedsNodeProcessor.inc index 323b8ff..2354745 100644 --- a/plugins/FeedsNodeProcessor.inc +++ b/plugins/FeedsNodeProcessor.inc @@ -192,13 +192,13 @@ class FeedsNodeProcessor extends FeedsProcessor { ); // Add on the "Unpublish" option for nodes, update wording. if (isset($form['update_non_existent'])) { - $form['update_non_existent']['#options'][FEEDS_UNPUBLISH_NON_EXISTENT] = t('Unpublish non-existent nodes'); + $form['update_non_existent']['#options'][FEEDS_UNPUBLISH_NON_EXISTENT] = t('Unpublish non existent nodes'); } $form['republish_previously_non_existent'] = array( '#type' => 'radios', - '#title' => t('Republish unpublished previously non-existent nodes'), - '#description' => t('Action to take when nodes that were previously unpublished for being non-existent, show up again in the feed.'), + '#title' => t('Republish unpublished previously non existent nodes'), + '#description' => t('Action to take when nodes that were previously unpublished for being non existent, show up again in the feed.'), '#options' => array( 0 => t('Leave unpublished'), 1 => t('Republish'), diff --git a/tests/feeds_processor_node.test b/tests/feeds_processor_node.test index 0e8efdc..08b23bc 100644 --- a/tests/feeds_processor_node.test +++ b/tests/feeds_processor_node.test @@ -318,7 +318,7 @@ class FeedsRSStoNodesTest extends FeedsWebTestCase { $this->assertText('Created 10 nodes'); $this->assertFeedItemCount(10); - // Change settings to delete non-existent nodes from feed. + // Change settings to delete non existent nodes from feed. $this->setSettings('syndication_standalone', 'FeedsNodeProcessor', array('update_non_existent' => 'delete')); $this->importURL('syndication_standalone', $missing_url); $this->assertText('Removed 1 node');