Home
Documentation
Downloads
Demo
Tracker
Development
Translation
Moodle.net
Search
projects
/
moodle.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
lesson MDL-23525 changed attempts retrieval from db to intuitional (code assumes...
[moodle.git]
/
mod
/
lesson
/
locallib.php
diff --git
a/mod/lesson/locallib.php
b/mod/lesson/locallib.php
index
b7d0b79
..
556d6aa
100644
(file)
--- a/
mod/lesson/locallib.php
+++ b/
mod/lesson/locallib.php
@@
-1013,7
+1013,7
@@
class lesson extends lesson_base {
if ($userid === null) {
$params['userid'] = $USER->id;
}
- return $DB->get_records('lesson_attempts', $params, 'timeseen
DE
SC');
+ return $DB->get_records('lesson_attempts', $params, 'timeseen
A
SC');
}
/**