From d412c96f47104402305fcc9cd8f2e6a76aff89c8 Mon Sep 17 00:00:00 2001 From: Alex Barth <alex_b@53995.no-reply.drupal.org> Date: Sat, 10 Jul 2010 22:57:50 +0000 Subject: [PATCH] Clarify attach to content type settings. --- includes/FeedsImporter.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/FeedsImporter.inc b/includes/FeedsImporter.inc index 867e57cc..1c790e13 100644 --- a/includes/FeedsImporter.inc +++ b/includes/FeedsImporter.inc @@ -261,7 +261,7 @@ class FeedsImporter extends FeedsConfigurable { $form['content_type'] = array( '#type' => 'select', '#title' => t('Attach to content type'), - '#description' => t('If you attach a configuration to a node you can use nodes for creating feeds on your site.'), + '#description' => t('If an importer is attached to a content type, content is imported by creating a node. If the standalone form is selected, content is imported by using the standalone form under http://example.com/import.'), '#options' => array('' => t('Use standalone form')) + node_get_types('names'), '#default_value' => $this->config['content_type'], ); -- GitLab