Skip to content

Commit

Permalink
Merge branch 'MDL-38033_dnd_uppercase_extn' of git://github.com/davos…
Browse files Browse the repository at this point in the history
…mith/moodle
  • Loading branch information
stronk7 committed Feb 19, 2013
2 parents 61df003 + 04a38bd commit 8337ed1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion course/dndupload.js
Expand Up @@ -549,7 +549,7 @@ M.course_dndupload = {
var extension = '';
var dotpos = file.name.lastIndexOf('.');
if (dotpos != -1) {
extension = file.name.substr(dotpos+1, file.name.length);
extension = file.name.substr(dotpos+1, file.name.length).toLowerCase();
}

for (var i=0; i<filehandlers.length; i++) {
Expand Down

0 comments on commit 8337ed1

Please sign in to comment.