Skip to content

Instantly share code, notes, and snippets.

@brockboland
Created May 10, 2012 14:21
Show Gist options
  • Save brockboland/2653316 to your computer and use it in GitHub Desktop.
Save brockboland/2653316 to your computer and use it in GitHub Desktop.
diff --git a/feeds_xpathparser.module b/feeds_xpathparser.module
index bb583ed..aca2470 100644 (file)
--- a/feeds_xpathparser.module
+++ b/feeds_xpathparser.module
@@ -10,7 +10,8 @@ function feeds_xpathparser_feeds_plugins() {
'description' => t('Parse HTML using XPath.'),
'handler' => array(
'parent' => 'FeedsParser',
- 'class' => 'FeedsXPathParserHTML',
+ 'class' => 'FeedsXPathParserHTML',
+ 'file' => 'FeedsXPathParserHTML.inc',
),
),
'FeedsXPathParserXML' => array(
@@ -18,7 +19,8 @@ function feeds_xpathparser_feeds_plugins() {
'description' => t('Parse XML using XPath.'),
'handler' => array(
'parent' => 'FeedsParser',
- 'class' => 'FeedsXPathParserXML',
+ 'class' => 'FeedsXPathParserXML',
+ 'file' => 'FeedsXPathParserXML.inc',
),
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment