Merge branch 'MDL-27143_21' of git://github.com/timhunt/moodle into MOODLE_21_STABLE

This commit is contained in:
Sam Hemelryk
2011-12-13 10:26:11 +13:00
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -484,7 +484,7 @@ function question_delete_course_category($category, $newcategory, $feedback=true
/**
* Enter description here...
*
* @param string $questionids list of questionids
* @param array $questionids of question ids
* @param object $newcontext the context to create the saved category in.
* @param string $oldplace a textual description of the think being deleted,
* e.g. from get_context_name
@@ -571,7 +571,7 @@ function question_delete_activity($cm, $feedback=true) {
* function also have to do other work, which is why you should not call this method
* directly from outside the questionbank.
*
* @param string $questionids a comma-separated list of question ids.
* @param array $questionids of question ids.
* @param integer $newcategoryid the id of the category to move to.
*/
function question_move_questions_to_category($questionids, $newcategoryid) {
+1 -1
View File
@@ -360,7 +360,7 @@ class question_category_object {
global $DB;
$questionids = $DB->get_records_select_menu('question',
'category = ? AND (parent = 0 OR parent = id)', array($oldcat), '', 'id,1');
question_move_questions_to_category($questionids, $newcat);
question_move_questions_to_category(array_keys($questionids), $newcat);
}
/**