Index: FeedsQueryPathParser.inc
===================================================================
--- FeedsQueryPathParser.inc
+++ FeedsQueryPathParser.inc
@@ -13,12 +13,12 @@
    * Implementation of FeedsParser::parse().
    */
   public function parse(FeedsImportBatch $batch, FeedsSource $source) {
-    $batch->setTitle(trim(qp($batch->getRaw(), 'title')->text()));
+    $batch->setTitle(trim(htmlqp($batch->getRaw(), 'title')->text()));
 
     $this->source_config = $source->getConfigFor($this);
     $this->rawXML = array_keys(array_filter($this->source_config['rawXML']));
 
-    foreach (qp($batch->getRaw(), $this->source_config['context']) as $child) {
+    foreach (htmlqp($batch->getRaw(), $this->source_config['context']) as $child) {
       $parsed_item = array();
       foreach ($this->source_config['sources'] as $source => $query) {
         $parsed_item[$source] = $this->parseSourceElement($child, $query, $source);
@@ -35,7 +35,7 @@
     }
 
     if ($query != '') {
-      $item = qp($item, $query);
+      $item = htmlqp($item, $query);
     }
 
     $values = array();
