Merge branch 'MDL-71614-fix' of github.com:sarjona/moodle

This commit is contained in:
Eloy Lafuente (stronk7) 2021-09-08 16:32:43 +02:00
commit 09825b1a9a
2 changed files with 3 additions and 3 deletions

View File

@ -267,9 +267,9 @@ $previewdata['techinfo'] .= print_collapsible_region_end(true);
// Output a link to export this single question.
if (question_has_capability_on($question, 'view')) {
if (class_exists('qbank_exporttoxml\\exporttoxml_helper')) {
if (class_exists('qbank_exporttoxml\\helper')) {
if (\core\plugininfo\qbank::is_plugin_enabled('qbank_exporttoxml')) {
$exportfunction = '\\qbank_exporttoxml\\exporttoxml_helper::question_get_export_single_question_url';
$exportfunction = '\\qbank_exporttoxml\\helper::question_get_export_single_question_url';
$previewdata['exporttoxml'] = html_writer::link($exportfunction($question),
get_string('exportonequestion', 'question'));
}

View File

@ -65,7 +65,7 @@
<input type="button" name="close" value="{{#str}} closepreview, question{{/str}}" class="btn btn-secondary" id="close-previewquestion-page">
{{/redirect}}
{{#redirect}}
<a href="{{{redirecturl}}}" class="btn btn-secondary">{{#str}} closepreview, question{{/str}}</a>
<a href="{{{redirecturl}}}" class="btn btn-secondary" role="button">{{#str}} closepreview, question{{/str}}</a>
{{/redirect}}
</div>
</form>