* fix bug fo #465.

This commit is contained in:
wyd621
2013-10-31 06:28:52 +00:00
parent 823fa21d0f
commit 0d4bab62e1
12 changed files with 15 additions and 15 deletions
+2 -2
View File
@@ -50,11 +50,11 @@
</tr>
<tr>
<th class='rowhead'><?php echo $lang->testtask->desc;?></th>
<td><?php echo html::textarea('desc', htmlspecialchars($task->desc), "rows=10 class='area-1'");?></td>
<td><?php echo html::textarea('desc', $task->desc, "rows=10 class='area-1'");?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->testtask->report;?></th>
<td><?php echo html::textarea('report', htmlspecialchars($task->report), "rows=10 class='area-1'");?></td>
<td><?php echo html::textarea('report', $task->report, "rows=10 class='area-1'");?></td>
</tr>
<tr>
<td colspan='2' class='a-center'><?php echo html::submitButton() . html::backButton();?> </td>