Fix the problem where backslashes were disappearing when editing notes/how-to

This commit is contained in:
Jonathan Ernst
2005-07-14 01:30:53 +00:00
committed by WineHQ
parent bd3f8ca90d
commit f2709df6db

View File

@@ -71,7 +71,7 @@ else
} }
echo '<tr><td class=color4>Description</td><td class=color0>', "\n"; echo '<tr><td class=color4>Description</td><td class=color0>', "\n";
echo '<p style="width:700px">', "\n"; echo '<p style="width:700px">', "\n";
echo '<textarea cols="80" rows="20" id="editor" name="noteDesc">'.stripslashes($_REQUEST['noteDesc']).'</textarea>',"\n"; echo '<textarea cols="80" rows="20" id="editor" name="noteDesc">'.$_REQUEST['noteDesc'].'</textarea>',"\n";
echo '</p>'; echo '</p>';
echo '</td></tr><tr><td colspan="2" align="center" class="color3">',"\n"; echo '</td></tr><tr><td colspan="2" align="center" class="color3">',"\n";
echo '<input type="submit" name=preview value="Preview">&nbsp',"\n"; echo '<input type="submit" name=preview value="Preview">&nbsp',"\n";