mirror of
https://github.com/friendica/friendica
synced 2024-12-23 08:40:16 +00:00
Merge pull request #9953 from realkinetix/php8fatal
PHP 8 fatal messages - Quit when message is empty similar to #9681
This commit is contained in:
commit
22a1e3cba4
2 changed files with 12 additions and 0 deletions
|
@ -167,6 +167,10 @@ class HTML
|
||||||
|
|
||||||
$message = mb_convert_encoding($message, 'HTML-ENTITIES', "UTF-8");
|
$message = mb_convert_encoding($message, 'HTML-ENTITIES', "UTF-8");
|
||||||
|
|
||||||
|
if (empty($message)) {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
@$doc->loadHTML($message, LIBXML_HTML_NODEFDTD);
|
@$doc->loadHTML($message, LIBXML_HTML_NODEFDTD);
|
||||||
|
|
||||||
XML::deleteNode($doc, 'style');
|
XML::deleteNode($doc, 'style');
|
||||||
|
@ -588,6 +592,10 @@ class HTML
|
||||||
|
|
||||||
$message = mb_convert_encoding($message, 'HTML-ENTITIES', "UTF-8");
|
$message = mb_convert_encoding($message, 'HTML-ENTITIES', "UTF-8");
|
||||||
|
|
||||||
|
if (empty($message)) {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
@$doc->loadHTML($message, LIBXML_HTML_NODEFDTD);
|
@$doc->loadHTML($message, LIBXML_HTML_NODEFDTD);
|
||||||
|
|
||||||
$message = $doc->saveHTML();
|
$message = $doc->saveHTML();
|
||||||
|
|
|
@ -1754,6 +1754,10 @@ class Probe
|
||||||
*/
|
*/
|
||||||
public static function getFeedLink(string $url, string $body)
|
public static function getFeedLink(string $url, string $body)
|
||||||
{
|
{
|
||||||
|
if (empty($body)) {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
$doc = new DOMDocument();
|
$doc = new DOMDocument();
|
||||||
if (!@$doc->loadHTML($body)) {
|
if (!@$doc->loadHTML($body)) {
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue