Merge branch 'MDL-43936_26' of git://github.com/timhunt/moodle into MOODLE_26_STABLE

This commit is contained in:
Sam Hemelryk 2014-02-06 10:04:06 +13:00
commit 155771cb4b

View file

@ -31,6 +31,9 @@ This files describes API changes for code that uses the question API.
search for the regular expression: search for the regular expression:
question_rewrite_questiontext_preview_urls|_questiontext_preview_pluginfile|question_send_questiontext_file question_rewrite_questiontext_preview_urls|_questiontext_preview_pluginfile|question_send_questiontext_file
3) The arugment list for core_question_renderer::mark_summary has changed. 3) The argument list for core_question_renderer::mark_summary has changed.
Please update your calls. (The most likely secnario for this is if you have Please update your calls. (The most likely scenario for this is if you have
overridden core_question_renderer::info in your own renderer.) overridden core_question_renderer::info in your own renderer.) You need to
make a change like:
- $this->mark_summary($qa, $options);
+ $this->mark_summary($qa, $behaviouroutput, $options);