diff --git a/include/bbcode.php b/include/bbcode.php index 0c4e12c9a..109ca743d 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -59,7 +59,11 @@ function bb_attachment($Text, $simplehtml = false, $tryoembed = true) { } elseif (($simplehtml != 4) && ($simplehtml != 0)) { $text = sprintf('%s
', $data["url"], $data["title"]); } else { - $text = sprintf('', $data["type"]); + if ($simplehtml != 4) { + $text = sprintf('', $data["type"]); + } else { + $span_end = ''; + } $bookmark = array(sprintf('[bookmark=%s]%s[/bookmark]', $data["url"], $data["title"]), $data["url"], $data["title"]); if ($tryoembed) { @@ -84,9 +88,13 @@ function bb_attachment($Text, $simplehtml = false, $tryoembed = true) { } if (trim($data["description"]) != "") { - $text .= sprintf('
%s
', trim(bbcode($data["description"]))); + $text .= sprintf('
%s
', trim(bbcode($data["description"]))); } } + + if ($simplehtml != 4) { + $text .= '
'; + } } return trim($data["text"].' '.$text.' '.$data["after"]); } @@ -531,10 +539,9 @@ function bb_ShareAttributes($share, $simplehtml) { break; case 4: - $headline = '
'; - $headline .= ''.html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8'); + $headline .= '
'.html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8'); $headline .= sprintf(t('%2$s %3$s'), $link, $userid, $posted); - $headline .= ":
"; + $headline .= ":
"; $text = trim($share[1]);