summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorPeter Grassberger <petertheone@gmail.com>2016-04-01 15:55:10 (GMT)
committerPeter Grassberger <petertheone@gmail.com>2016-04-01 15:55:10 (GMT)
commita315369d50e4863fa45f4189f67d651254bef90c (patch)
tree4f91adf6faf523a5cb4c0f4f40b771c00a21b6fb /www
parent03b5badf7cdeeac43b4567f1c731d6b13d84261e (diff)
fix addCart options
Diffstat (limited to 'www')
-rw-r--r--www/js/importer.js2
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() {