mirror of
https://github.com/friendica/friendica
synced 2024-11-09 23:02:54 +00:00
Fix removing falsy text nodes in HTML::tagToBBCodeSub
- This wrongly removed text nodes containing just '0'
This commit is contained in:
parent
df559a24c0
commit
3e1b6890b7
2 changed files with 7 additions and 3 deletions
|
@ -114,7 +114,7 @@ class HTML
|
||||||
/** @var \DOMNode $child */
|
/** @var \DOMNode $child */
|
||||||
foreach ($node->childNodes as $key => $child) {
|
foreach ($node->childNodes as $key => $child) {
|
||||||
/* Remove empty text nodes at the start or at the end of the children list */
|
/* Remove empty text nodes at the start or at the end of the children list */
|
||||||
if ($key > 0 && $key < $node->childNodes->length - 1 || $child->nodeName != '#text' || trim($child->nodeValue)) {
|
if ($key > 0 && $key < $node->childNodes->length - 1 || $child->nodeName != '#text' || trim($child->nodeValue) !== '') {
|
||||||
$newNode = $child->cloneNode(true);
|
$newNode = $child->cloneNode(true);
|
||||||
$node->parentNode->insertBefore($newNode, $node);
|
$node->parentNode->insertBefore($newNode, $node);
|
||||||
}
|
}
|
||||||
|
@ -144,10 +144,10 @@ class HTML
|
||||||
public static function toBBCode(string $message, string $basepath = ''): string
|
public static function toBBCode(string $message, string $basepath = ''): string
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
* Check if message is empty to prevent a lot code below being executed
|
* Check if message is empty to prevent a lot of code below from being executed
|
||||||
* for just an empty message.
|
* for just an empty message.
|
||||||
*/
|
*/
|
||||||
if (empty($message)) {
|
if ($message === '') {
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -82,6 +82,10 @@ its surprisingly good",
|
||||||
'html' => "<p>Now playing</p><pre><code>echo "main(i){for(i=0;;i++)putchar(((i*(i>>8|i>>9)&46&i>>8))^(i&i>>13|i>>6));}" | gcc -o a.out -x c - 2> /dev/null
|
'html' => "<p>Now playing</p><pre><code>echo "main(i){for(i=0;;i++)putchar(((i*(i>>8|i>>9)&46&i>>8))^(i&i>>13|i>>6));}" | gcc -o a.out -x c - 2> /dev/null
|
||||||
./a.out | aplay -q 2> /dev/null</code></pre><p>its surprisingly good</p>",
|
./a.out | aplay -q 2> /dev/null</code></pre><p>its surprisingly good</p>",
|
||||||
],
|
],
|
||||||
|
'bug-11851-content-0' => [
|
||||||
|
'expectedBBCode' => '[url=https://dev-friendica.mrpetovan.com/profile/hypolite]@hypolite[/url] 0',
|
||||||
|
'html' => '<p><span class="h-card"><a href="https://dev-friendica.mrpetovan.com/profile/hypolite" class="u-url mention">@<span>hypolite</span></a></span> 0</p>',
|
||||||
|
],
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue