| View Issue Details [ Jump to Notes ] | [ Issue History ] [ Print ] |
| ID | Project | Category | View Status | Date Submitted | Last Update |
| 0000756 | CATS.cacert.org | Admin Interface | public | 2009-07-24 18:37 | 2011-07-27 21:20 |
|
| Reporter | J Steijlen | |
| Assigned To | Ted | |
| Priority | high | Severity | major | Reproducibility | N/A |
| Status | closed | Resolution | fixed | |
| Platform | | OS | | OS Version | |
| Product Version | | |
| Target Version | | Fixed in Version | production | |
|
| Summary | 0000756: While editing answers to questions of type multiple choice. It's not possible to add answers. |
| Description | While editing answers to questions of type multiple choice. It was not possible to add answers.
There were 2 save buttons (Button_11), one of which I would've expected to be a button to add an answer (Button_14).
Tried and tested on my system at least
Attached patch changes one of the Button_11's to a Button_14 (both text and action) |
| Tags | No tags attached. |
|
| Attached Files | addAnswer_button_on_multiple_choice.patch [^] (929 bytes) 2009-07-24 18:37 [Show Content] [Hide Content]While editing answers to questions of type multiple choice. It was not possible to add answers.
There were 2 save buttons (Button_11), one of which I would've expected to be a button to add an answer (Button_14).
Tried and tested on my system at least.
Index: CATS/classes/Answer.class.php
===================================================================
--- CATS/classes/Answer.class.php (revision 1641)
+++ CATS/classes/Answer.class.php (working copy)
@@ -273,7 +273,7 @@
}
echo "<tr>";
echo"<td class='leftColumn'></td>";
- echo"<td class='Button_row'><input name='submit' class='Button_rightColumn' type='submit' value='".Button_11."'/> ";
+ echo"<td class='Button_row'><input name='addAnsw' class='Button_rightColumn' type='submit' value='".Button_14."'/> ";
echo"<input type='submit' class='Button' name='minAnsw' value='".Button_15."'/></td>";
echo"</tr>";
echo "<tr>";
|
|