Created
May 10, 2012 14:21
-
-
Save brockboland/2653316 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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