From e0c90c7ad24c8913c82b45e7e93342ddc49cefd5 Mon Sep 17 00:00:00 2001
From: Chris Leppanen <chris.leppanen@gmail.com>
Date: Tue, 25 Sep 2012 22:35:36 -0700
Subject: [PATCH] Use consistent set target callbacks.

---
 mappers/text.inc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mappers/text.inc b/mappers/text.inc
index 33e7fda0..3e51ffc5 100644
--- a/mappers/text.inc
+++ b/mappers/text.inc
@@ -23,7 +23,7 @@ function text_feeds_processor_targets_alter(&$targets, $entity_type, $bundle_nam
     if (in_array($info['type'], $text_types)) {
       $targets[$name] = array(
         'name' => check_plain($instance['label']),
-        'callback' => 'field_feeds_set_target_text',
+        'callback' => 'text_feeds_set_target',
         'description' => t('The @label field of the entity.', array('@label' => $instance['label'])),
       );
     }
@@ -33,7 +33,7 @@ function text_feeds_processor_targets_alter(&$targets, $entity_type, $bundle_nam
 /**
  * Callback for mapping text fields.
  */
-function field_feeds_set_target_text($source, $entity, $target, $value) {
+function text_feeds_set_target($source, $entity, $target, $value) {
   if (empty($value)) {
     return;
   }
-- 
GitLab