diff options
-rw-r--r-- | www/js/importer.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/js/importer.js b/www/js/importer.js index 13e7aff..4ea55b3 100644 --- a/www/js/importer.js +++ b/www/js/importer.js @@ -210,7 +210,7 @@ Rdxport.Upload.prototype.addCart = function(success) { var self = this; if (this.createCart) { - rdxport.addCart(this.group.groupName, 'audio', this.newCartNumber, function(cartXML) { + rdxport.addCart(this.group.groupName, 'audio', {CART_NUMBER: this.newCartNumber}, function(cartXML) { self.cart = new Rdxport.Cart(cartXML, self.group); success(file); }).fail(function() { |