diff --git a/feeds.pages.inc b/feeds.pages.inc
index eeeab90..6eddf47 100644
--- a/feeds.pages.inc
+++ b/feeds.pages.inc
@@ -354,7 +354,7 @@ function theme_feeds_upload($variables) {
     $summary .= '<div class="feeds-file-info">';
     $summary .= '<div class="feeds-file-name">';
     if ($wrapper) {
-      $summary .= l(check_plain($file->filename), $wrapper->getExternalUrl());
+      $summary .= l($file->filename, $wrapper->getExternalUrl());
     }
     else {
       $summary .= t('URI scheme %scheme not available.', array('%scheme' =>  file_uri_scheme($uri)));
diff --git a/plugins/FeedsCSVParser.inc b/plugins/FeedsCSVParser.inc
index c6f11cd..1c078f0 100644
--- a/plugins/FeedsCSVParser.inc
+++ b/plugins/FeedsCSVParser.inc
@@ -124,20 +124,20 @@ class FeedsCSVParser extends FeedsParser {
     $sources = $uniques = array();
     foreach ($mappings as $mapping) {
       if (strpos($mapping['source'], ',') !== FALSE) {
-        $sources[] = '"' . check_plain($mapping['source']) . '"';
+        $sources[] = '"' . $mapping['source'] . '"';
       }
       else {
-        $sources[] = check_plain($mapping['source']);
+        $sources[] = $mapping['source'];
       }
       if (!empty($mapping['unique'])) {
-        $uniques[] = check_plain($mapping['source']);
+        $uniques[] = $mapping['source'];
       }
     }
     $sources = array_unique($sources);
 
-    $output = t('Import !csv_files with one or more of these columns: !columns.', array('!csv_files' => l(t('CSV files'), 'http://en.wikipedia.org/wiki/Comma-separated_values'), '!columns' => implode(', ', $sources)));
+    $output = t('Import !csv_files with one or more of these columns: @columns.', array('!csv_files' => l(t('CSV files'), 'http://en.wikipedia.org/wiki/Comma-separated_values'), '@columns' => implode(', ', $sources)));
     $items = array();
-    $items[] = format_plural(count($uniques), 'Column <strong>!columns</strong> is mandatory and considered unique: only one item per !columns value will be created.', 'Columns <strong>!columns</strong> are mandatory and values in these columns are considered unique: only one entry per value in one of these column will be created.', array('!columns' => implode(', ', $uniques)));
+    $items[] = format_plural(count($uniques), 'Column <strong>@columns</strong> is mandatory and considered unique: only one item per @columns value will be created.', 'Columns <strong>@columns</strong> are mandatory and values in these columns are considered unique: only one entry per value in one of these column will be created.', array('@columns' => implode(', ', $uniques)));
     $items[] = l(t('Download a template'), 'import/' . $this->id . '/template');
     $form['help'] = array(
       '#prefix' => '<div class="help">',
@@ -215,16 +215,16 @@ class FeedsCSVParser extends FeedsParser {
     $mappings = feeds_importer($this->id)->processor->config['mappings'];
     $sources = $uniques = array();
     foreach ($mappings as $mapping) {
-      if (in_array(check_plain($mapping['source']), $uniques) || in_array(check_plain($mapping['source']), $sources)) {
+      if (in_array($mapping['source'], $uniques) || in_array($mapping['source'], $sources)) {
         // Skip columns we've already seen.
         continue;
       }
 
       if (!empty($mapping['unique'])) {
-        $uniques[] = check_plain($mapping['source']);
+        $uniques[] = $mapping['source'];
       }
       else {
-        $sources[] = check_plain($mapping['source']);
+        $sources[] = $mapping['source'];
       }
     }
     $sep = $this->config['delimiter'];
