You are here

protected function FeedsXPathParserBase::errorStart in Feeds XPath Parser 6

Same name and namespace in other branches
  1. 7 FeedsXPathParserBase.inc \FeedsXPathParserBase::errorStart()
2 calls to FeedsXPathParserBase::errorStart()
FeedsXPathParserHTML::setup in ./FeedsXPathParserHTML.inc
Implementation of FeedsXPathParserBase::setup().
FeedsXPathParserXML::setup in ./FeedsXPathParserXML.inc
Implementation of FeedsXPathParserBase::setup().

File

./FeedsXPathParserBase.inc, line 441
Provides the abstract base class for FeedsXPathParserHTML and FeedsXPathParserXML.

Class

FeedsXPathParserBase
Base class for the HTML and XML parsers.

Code

protected function errorStart() {
  libxml_clear_errors();
  return libxml_use_internal_errors(TRUE);
}