Line wrap article before preparing for quoting.

This commit is contained in:
Retro_Guy 2024-05-22 05:09:05 -07:00
parent 775a39ab7b
commit 6108dcefba
1 changed files with 3 additions and 1 deletions

View File

@ -464,6 +464,7 @@ if ($show == 1) {
echo 'class="postbody" id="postbody" ';
echo 'name="' . md5($fieldencrypt . "body") . '" wrap="soft">';
$bodyzeile = wrap_post($bodyzeile);
if ((isset($bodyzeile)) && ($post_autoquote))
echo htmlspecialchars($bodyzeile);
if (is_string($body))
@ -472,8 +473,9 @@ if ($show == 1) {
if (! $post_autoquote) {
echo '<input type="hidden" id="hidebody"';
echo 'value="';
if (isset($bodyzeile))
if (isset($bodyzeile)) {
echo htmlspecialchars($bodyzeile);
}
echo '">';
?>