- πΊπΈUnited States markie Albuquerque, NM
Drupal 7 is EOL. If this applies to 2.x please reopen and update to that branch.
When the module removes a tag, it adds a white space in it's place.
Example:
<a href="example.com">This is a link</a>.
will turn into
This is a link .
(notice the space before the dot)
It seems that the source of this bug is this preg_replace:
// Strip tags
$output = strip_tags(str_replace('<', ' <', $output));
By the way, why do you use strip_tags() instead of Drupal's filter_xss() function?
Closed: outdated
1.0
Code
The patch will have to be re-rolled with new suggestions/changes described in the comments in the issue.
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Drupal 7 is EOL. If this applies to 2.x please reopen and update to that branch.