diff options
Diffstat (limited to 'src/team/clar.php')
| -rw-r--r-- | src/team/clar.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/team/clar.php b/src/team/clar.php index a1e3972..c763c2c 100644 --- a/src/team/clar.php +++ b/src/team/clar.php @@ -56,13 +56,13 @@ for ($i=0; $i<count($clar); $i++) { if ($clar[$i]["question"] == "") $clar[$i]["question"] = " "; echo " <td>"; // echo "<pre>" . $clar[$i]["question"] . "</pre>"; - echo " <textarea name=\"m$i\" cols=\"60\" rows=\"8\" readonly>".$clar[$i]["question"]."</textarea>\n"; + echo " <textarea name=\"m$i\" cols=\"60\" rows=\"8\" readonly>". unsanitizeText($clar[$i]["question"]) ."</textarea>\n"; echo "</td>\n"; if (trim($clar[$i]["answer"]) == "") $clar[$i]["answer"] = "Not answered yet"; echo " <td>"; // echo " <pre>" . $clar[$i]["answer"] . "</pre>"; - echo " <textarea name=\"a$i\" cols=\"60\" rows=\"8\" readonly>".$clar[$i]["answer"]."</textarea>\n"; + echo " <textarea name=\"a$i\" cols=\"60\" rows=\"8\" readonly>". unsanitizeText($clar[$i]["answer"]) ."</textarea>\n"; echo "</td>\n"; echo " </tr>\n"; } |