Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/addon/mod/quiz/pages/review/review.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ <h2>{{ 'addon.mod_quiz.overdue' | translate }}</h2>
</ion-item>
<ion-item text-wrap no-lines *ngIf="attempt.readableMark">
<h2>{{ 'addon.mod_quiz.marks' | translate }}</h2>
<p><{{ attempt.readableMark }}</p>
<p>{{ attempt.readableMark }}</p>
</ion-item>
<ion-item text-wrap no-lines *ngIf="attempt.readableGrade">
<h2>{{ 'addon.mod_quiz.grade' | translate }}</h2>
Expand Down
2 changes: 1 addition & 1 deletion src/assets/lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -1316,7 +1316,7 @@
"core.back": "Back",
"core.block.blocks": "Blocks",
"core.cancel": "Cancel",
"core.cannotconnect": "Cannot connect: Verify that you have correctly typed the URL and that your site uses Moodle 2.4 or later.",
"core.cannotconnect": "Cannot connect: Verify that you have correctly typed the URL and that your site uses Moodle 3.1 or later.",
"core.cannotdownloadfiles": "File downloading is disabled. Please contact your site administrator.",
"core.captureaudio": "Record audio",
"core.capturedimage": "Taken picture.",
Expand Down
2 changes: 1 addition & 1 deletion src/core/course/providers/module-delegate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ export class CoreCourseModuleDelegate extends CoreDelegate {
* @return Whether module is disabled.
*/
isModuleDisabledInSite(modname: string, site?: CoreSite): boolean {
const handler = this.getHandler(modname, true);
const handler = this.getHandler(modname, false);

if (handler) {
site = site || this.sitesProvider.getCurrentSite();
Expand Down