Merge pull request #3450 from annando/1705-more-classes

And even more global classes ...
This commit is contained in:
Hypolite Petovan 2017-05-07 18:35:21 -04:00 committed by GitHub
commit bb834f8d51
1 changed files with 6 additions and 6 deletions

View File

@ -733,11 +733,11 @@ class Probe {
return false;
}
$doc = new DOMDocument();
$doc = new \DOMDocument();
if (!@$doc->loadHTML($content))
return false;
$xpath = new DomXPath($doc);
$xpath = new \DomXPath($doc);
$vcards = $xpath->query("//div[contains(concat(' ', @class, ' '), ' vcard ')]");
if (!is_object($vcards))
@ -997,11 +997,11 @@ class Probe {
*/
private function pumpio_profile_data($profile) {
$doc = new DOMDocument();
$doc = new \DOMDocument();
if (!@$doc->loadHTMLFile($profile))
return false;
$xpath = new DomXPath($doc);
$xpath = new \DomXPath($doc);
$data = array();
@ -1073,12 +1073,12 @@ class Probe {
* @return string feed link
*/
private function get_feed_link($url) {
$doc = new DOMDocument();
$doc = new \DOMDocument();
if (!@$doc->loadHTMLFile($url))
return false;
$xpath = new DomXPath($doc);
$xpath = new \DomXPath($doc);
//$feeds = $xpath->query("/html/head/link[@type='application/rss+xml']");
$feeds = $xpath->query("/html/head/link[@type='application/rss+xml' and @rel='alternate']");