1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-12-11 23:36:02 +01:00

Merge pull request #491 from 8n-tech/master

Resolved newline issues with #490
This commit is contained in:
Fredrick Brennan 2015-05-01 06:34:13 -04:00
commit fb2743ca9b

View File

@ -2386,10 +2386,6 @@ function markup(&$body, $track_cites = false, $op = false) {
$tagsOpen = false; $tagsOpen = false;
} }
} }
if ($tagsOpen !== false) {
$tagsOpen .= "<br />";
}
} }
// If tags are closed, check to see if they are now open. // If tags are closed, check to see if they are now open.
// This counts the number of open tags (that are not self-closing) against the number of complete tags. // This counts the number of open tags (that are not self-closing) against the number of complete tags.
@ -2412,6 +2408,9 @@ function markup(&$body, $track_cites = false, $op = false) {
if (!$tagsOpen) { if (!$tagsOpen) {
$bodyNew .= "</p>"; $bodyNew .= "</p>";
} }
else if ($tagsOpen !== false) {
$tagsOpen .= "<br />";
}
} }
if ($tagsOpen !== false) { if ($tagsOpen !== false) {