diff --git a/sites/all/modules/contrib/feeds_xpathparser/FeedsXPathParser.inc b/sites/all/modules/contrib/feeds_xpathparser/FeedsXPathParser.inc
index 283b094..bce13c3 100644
--- a/sites/all/modules/contrib/feeds_xpathparser/FeedsXPathParser.inc
+++ b/sites/all/modules/contrib/feeds_xpathparser/FeedsXPathParser.inc
@@ -375,6 +375,13 @@ class FeedsXPathParserBase extends FeedsParser {
    *   The values from the form to validate, passed by reference.
    */
   public function sourceFormValidate(&$values) {
+
+    // hacked by Darren Petersen, ServerLogic: 
+    // Prevent individual importers from keeping their own settings.  
+    // We don't want to override the master copy in any case.
+    $values = array();
+    return;
+    /*
     $values = $values['xpath'];
     asort($values);
     asort($this->config);
@@ -383,6 +390,7 @@ class FeedsXPathParserBase extends FeedsParser {
       return;
     }
     $this->configFormValidate($values);
+   */ 
   }
 
   /**
