Home
Documentation
Downloads
Demo
Tracker
Development
Translation
Moodle.net
Search
projects
/
moodle.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
32a69a7
)
MDL-47970 mod_scorm: fixed HTML5 validation error
author
Sam Hemelryk
<sam@moodle.com>
Thu, 30 Oct 2014 01:23:59 +0000
(14:23 +1300)
committer
Sam Hemelryk
<sam@moodle.com>
Thu, 30 Oct 2014 01:56:15 +0000
(14:56 +1300)
mod/scorm/index.php
patch
|
blob
|
blame
|
history
diff --git
a/mod/scorm/index.php
b/mod/scorm/index.php
index
e92e8ee
..
34b8418
100644
(file)
--- a/
mod/scorm/index.php
+++ b/
mod/scorm/index.php
@@
-90,7
+90,7
@@
foreach ($scorms as $scorm) {
$trackedusers = scorm_get_count_users($scorm->id, $scorm->groupingid);
if ($trackedusers > 0) {
$reportshow = html_writer::link('report.php?id='.$scorm->coursemodule,
- get_string('viewallreports', 'scorm', $trackedusers))
.html_writer::end_div()
;
+ get_string('viewallreports', 'scorm', $trackedusers));
} else {
$reportshow = get_string('noreports', 'scorm');
}