diff --git a/plugins/FeedsNodeProcessor.inc b/plugins/FeedsNodeProcessor.inc
index 49199dc1b3939e9be9c4582fc1ad2572f78f1c6a..a6de53cbe6c63ef2a31e97a6e52003fd11ff148d 100644
--- a/plugins/FeedsNodeProcessor.inc
+++ b/plugins/FeedsNodeProcessor.inc
@@ -171,7 +171,8 @@ class FeedsNodeProcessor extends FeedsProcessor {
       '#default_value' => $this->config['content_type'],
     );
     $format_options = array(FEEDS_NODE_DEFAULT_FORMAT => t('Default format'));
-    $formats = filter_formats();
+    global $user;
+    $formats = filter_formats($user);
       foreach ($formats as $format) {
         $format_options[$format->format] = check_plain($format->name);
       }