diff --git a/plugins/FeedsOPMLParser.inc b/plugins/FeedsOPMLParser.inc
index 8871dd3905b0d67845f82abef7a52bd6d46ead54..db473ba24ca34dd757035e6f59bdb273bccf2e1c 100644
--- a/plugins/FeedsOPMLParser.inc
+++ b/plugins/FeedsOPMLParser.inc
@@ -16,9 +16,9 @@ class FeedsOPMLParser extends FeedsParser {
    */
   public function parse(FeedsSource $source, FeedsFetcherResult $fetcher_result) {
     feeds_include_library('opml_parser.inc', 'opml_parser');
-    $result = opml_parser_parse($fetcher_result->getRaw());
-    $result = new FeedsParserResult($result['items']);
-    $result->setTitle($result['title']);
+    $opml = opml_parser_parse($fetcher_result->getRaw());
+    $result = new FeedsParserResult($opml['items']);
+    $result->setTitle($opml['title']);
     return $result;
   }