Fix formatting issue with textarea in mail.php.

This commit is contained in:
Retro_Guy 2024-10-08 06:02:26 -07:00
parent 5523524624
commit 7ce9c4023c
1 changed files with 11 additions and 2 deletions

View File

@ -298,8 +298,17 @@ if (isset($_POST['command']) && $_POST['command'] == 'Send') {
echo "<td>To: </td><td><input type='text' name='to' value='" . $mail_to . "'/></td>"; echo "<td>To: </td><td><input type='text' name='to' value='" . $mail_to . "'/></td>";
echo '</tr><tr>'; echo '</tr><tr>';
echo "<td>Subject: </td><td><input type='text' name='subject' value='" . htmlentities($subject) . "'/></td>"; echo "<td>Subject: </td><td><input type='text' name='subject' value='" . htmlentities($subject) . "'/></td>";
echo '</tr><tr>'; echo '</tr></table>';
echo "<td></td><td><textarea class='postbody' id='message' name='message'>$message</textarea></td>";
echo '<div class="np_post_body">';
echo '<table><tr>';
echo '<textarea cols="' . $wrap_width . '"';
echo 'class="postbody" id="message" cols="72"';
echo 'name="message" wrap="soft">' . $message . '</textarea>';
echo '</table></div><table><tbody><tr>';
echo '</tr><tr>'; echo '</tr><tr>';
echo "<input type='hidden' name='from' value='" . $user . "' />"; echo "<input type='hidden' name='from' value='" . $user . "' />";
echo "<input type='hidden' name='username' value='" . $_POST['username'] . "' />"; echo "<input type='hidden' name='username' value='" . $_POST['username'] . "' />";