Merge pull request #13848 from annando/getbodystring
Changed leftover "getBody" to "getBodyString"
This commit is contained in:
commit
a0f7625c34
1 changed files with 2 additions and 2 deletions
|
@ -2207,7 +2207,7 @@ class GServer
|
||||||
*/
|
*/
|
||||||
private static function analyseRootBody($curlResult, array $serverdata): array
|
private static function analyseRootBody($curlResult, array $serverdata): array
|
||||||
{
|
{
|
||||||
if (empty($curlResult->getBody())) {
|
if (empty($curlResult->getBodyString())) {
|
||||||
return $serverdata;
|
return $serverdata;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2220,7 +2220,7 @@ class GServer
|
||||||
$platforms = array_merge($ap_platforms, $dfrn_platforms, $zap_platforms, $platforms);
|
$platforms = array_merge($ap_platforms, $dfrn_platforms, $zap_platforms, $platforms);
|
||||||
|
|
||||||
$doc = new DOMDocument();
|
$doc = new DOMDocument();
|
||||||
@$doc->loadHTML($curlResult->getBody());
|
@$doc->loadHTML($curlResult->getBodyString());
|
||||||
$xpath = new DOMXPath($doc);
|
$xpath = new DOMXPath($doc);
|
||||||
$assigned = false;
|
$assigned = false;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue