- First commit to issue fork.
- Status changed to Closed: won't fix
2 months ago 3:15pm 13 September 2024
public static function isSimple($string, $length = 250, $allowed_tags = NULL, &$html = FALSE) {
...
if (!isset($strings[$string_clone])) {
$plain_string = strip_tags($string_clone);
$simple = TRUE;
if ($allowed_tags !== FALSE) {
$filtered_string = Xss::filter($string_clone, $allowed_tags);
$html = $filtered_string !== $plain_string;
...
}
...
}
...
}
So if isset($strings[$string_clone])
$html
will not get a correct value.
Closed: won't fix
3.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.