Skip to content

Commit

Permalink
MDL-14593 - delete icons in the question bank do not work. This was a…
Browse files Browse the repository at this point in the history
… regression caused by part of the fix for MDL-13982. I hvae reverted that bit for now, pending a better solution.
  • Loading branch information
tjhunt committed May 27, 2008
1 parent db880ae commit 5412cd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion question/editlib.php
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ function question_showbank($tabname, $contexts, $pageurl, $cm, $page, $perpage,

if (optional_param('deleteselected', false, PARAM_BOOL)){ // teacher still has to confirm
// make a list of all the questions that are selected
$rawquestions = (array) data_submitted();
$rawquestions = $_REQUEST; // This code is called by both POST forms and GET links, so cannot use data_submitted.
$questionlist = ''; // comma separated list of ids of questions to be deleted
$questionnames = ''; // string with names of questions separated by <br /> with
// an asterix in front of those that are in use
Expand Down

0 comments on commit 5412cd2

Please sign in to comment.