-
Bug
-
Resolution: Fixed
-
Minor
-
3.2.1
-
-
MOODLE_32_STABLE
-
MOODLE_33_STABLE
-
Moodle Mobile 3.3.0
There are some places in the app where we do something like:
array.sort(function(a, b) {
|
return a > b;
|
});
|
This is wrong. The compare function must return a positive or negative value, not a boolean.