Allow backslash in posts.

This commit is contained in:
Retro_Guy 2024-01-05 06:58:51 -07:00
parent 3fd191eed8
commit 45dcf42182
1 changed files with 3 additions and 3 deletions

View File

@ -64,7 +64,7 @@ if ($OVERRIDES['enable_post_log'] > 0) {
@$subject = stripslashes($_POST[md5($fieldnamedecrypt . "subject")]); @$subject = stripslashes($_POST[md5($fieldnamedecrypt . "subject")]);
@$name = $_POST[md5($fieldnamedecrypt . "name")]; @$name = $_POST[md5($fieldnamedecrypt . "name")];
@$email = $_POST[md5($fieldnamedecrypt . "email")]; @$email = $_POST[md5($fieldnamedecrypt . "email")];
@$body = stripslashes($_POST[md5($fieldnamedecrypt . "body")]); @$body = $_POST[md5($fieldnamedecrypt . "body")];
@$abspeichern = $_REQUEST["abspeichern"]; @$abspeichern = $_REQUEST["abspeichern"];
@$references = $_REQUEST["references"]; @$references = $_REQUEST["references"];
@$id = $_REQUEST["id"]; @$id = $_REQUEST["id"];
@ -382,7 +382,7 @@ if ($show == 1) {
} else { } else {
echo '<input class="post" type="text" name="' . md5($fieldencrypt . "name") . '"'; echo '<input class="post" type="text" name="' . md5($fieldencrypt . "name") . '"';
if (isset($name)) if (isset($name))
echo 'value="' . htmlspecialchars(stripslashes($name)) . '"'; echo 'value="' . htmlspecialchars($name) . '"';
if ($logged_in) { if ($logged_in) {
echo 'size="40" maxlength="40" readonly>'; echo 'size="40" maxlength="40" readonly>';
} else { } else {
@ -450,7 +450,7 @@ if ($show == 1) {
<input type="hidden" id="hidebody" <input type="hidden" id="hidebody"
value="<?php value="<?php
if (isset($bodyzeile)) if (isset($bodyzeile))
echo htmlspecialchars(stripslashes($bodyzeile)); echo htmlspecialchars($bodyzeile);
?>"> <script language="JavaScript"> ?>"> <script language="JavaScript">
<!-- <!--
function quoten() { function quoten() {