diff options
| author | Cassio de Campos <cassiopc@gmail.com> | 2018-09-05 20:07:08 +0000 |
|---|---|---|
| committer | Cassio de Campos <cassiopc@gmail.com> | 2018-09-05 20:07:08 +0000 |
| commit | 6302826d53cc12f731c41915a47c6c19f65743cf (patch) | |
| tree | 3234edb033355e28525d01deb7a36a1470190b53 /src/admin/claredit.php | |
| parent | 034545b62ea8e7e10d544b40e1bb78778a874f71 (diff) | |
| download | boca-6302826d53cc12f731c41915a47c6c19f65743cf.tar.gz boca-6302826d53cc12f731c41915a47c6c19f65743cf.zip | |
fix some printing issues
Diffstat (limited to 'src/admin/claredit.php')
| -rw-r--r-- | src/admin/claredit.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/admin/claredit.php b/src/admin/claredit.php index 5eb812f..cf9785c 100644 --- a/src/admin/claredit.php +++ b/src/admin/claredit.php @@ -125,14 +125,13 @@ if (($a = DBChiefGetClarToAnswer($clarnumber, $clarsitenumber, <tr> <td width="20%" align=right><b>Clarification:</b></td> <td width="80%"> - <textarea name="message" readonly cols="60" rows="8"><?php echo $a["question"]; ?> - </textarea> + <textarea name="message" readonly cols="60" rows="8"><?php echo unsanitizeText($a["question"]); ?></textarea> </td> </tr> <tr> <td width="20%" align=right><b>Answer:</b></td> <td width="80%"> - <textarea name="answer" cols="60" rows="8"><?php echo $a["answer"]; ?></textarea> + <textarea name="answer" cols="60" rows="8"><?php echo unsanitizeText($a["answer"]); ?></textarea> </td> </tr> <tr> |