Skip to content

Commit

Permalink
Fix class name
Browse files Browse the repository at this point in the history
  • Loading branch information
CloCkWeRX committed Dec 9, 2011
1 parent 5ae8322 commit 2342105
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion XML/Feed/Parser.php
Expand Up @@ -33,6 +33,7 @@
*/
require_once 'XML/Feed/Parser/Exception.php';

require_once 'XML/Feed/Parser/Factory.php';
/**
* This is the core of the XML_Feed_Parser package. It identifies feed types
* and abstracts access to them. It is an iterator, allowing for easy access
Expand Down Expand Up @@ -112,7 +113,7 @@ function __construct($feed, $strict = false, $suppressWarnings = false, $tidy =
*/
function initialize($feed, $strict = false, $suppressWarnings = false, $tidy = false)
{
$factory = new XML_Feed_Factory();
$factory = new XML_Feed_Parser_Factory();
$this->feed = $factory->build($feed);
}

Expand Down

0 comments on commit 2342105

Please sign in to comment.