Fix extremely critical bug that added a space in subject line in html form input. </sarc>
This commit is contained in:
parent
e6dba7fe7e
commit
da8c476634
|
@ -532,7 +532,7 @@ if ($show == 1) {
|
|||
echo '<td class="np_post_header_subject"><b>' . $text_header["subject"] . '</b></td>';
|
||||
echo '<td class="np_post_header_instructions"><input class="post" type="text" ';
|
||||
echo ' name="' . md5($fieldencrypt . "subject") . '" ';
|
||||
echo ' value="' . htmlspecialchars($subject) . '" ';
|
||||
echo ' value="' . trim(htmlspecialchars($subject)) . '" ';
|
||||
echo ' size="40" maxlength="' . $thread_maxSubject . '"></td>';
|
||||
echo '<td></td></tr><tr>';
|
||||
|
||||
|
|
Loading…
Reference in New Issue