Merge branch 'wip-MDL-33026-master' of git://github.com/marinaglancy/moodle

This commit is contained in:
Dan Poltawski 2012-05-29 14:58:31 +08:00
commit fa31bfc181
3 changed files with 6 additions and 0 deletions

View File

@ -91,6 +91,7 @@ M.form_dndupload.init = function(Y, options) {
this.maxfiles = options.maxfiles;
this.maxbytes = options.maxbytes;
this.itemid = options.itemid;
this.author = options.author;
this.container = this.Y.one('#'+options.containerid);
if (options.filemanager) {
@ -452,6 +453,9 @@ M.form_dndupload.init = function(Y, options) {
formdata.append('sesskey', M.cfg.sesskey);
formdata.append('repo_id', this.repositoryid);
formdata.append('itemid', this.itemid);
if (this.author) {
formdata.append('author', this.author);
}
if (this.filemanager) { // Filepickers do not have folders
formdata.append('savepath', this.filemanager.currentpath);
}

View File

@ -963,6 +963,7 @@ M.form_filemanager.init = function(Y, options) {
filemanager: manager,
acceptedtypes: options.accepted_types,
clientid: options.client_id,
author: options.author,
maxfiles: options.maxfiles,
maxbytes: options.maxbytes,
itemid: options.itemid,

View File

@ -47,6 +47,7 @@ M.form_filepicker.init = function(Y, options) {
var dndoptions = {
clientid: options.client_id,
acceptedtypes: options.accepted_types,
author: options.author,
maxfiles: -1,
maxbytes: options.maxbytes,
itemid: options.itemid,