diff options
author | Christian Pointner <equinox@helsinki.at> | 2014-09-20 03:37:40 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2014-09-20 03:37:40 (GMT) |
commit | 680cef1efc6eeb41d0edfddf2d04ea480a1b553d (patch) | |
tree | 833f834c3992070de087b60f84ad52da6aee17eb /index.html | |
parent | e5325cb094af905e0968bb6e10387f050d51d56e (diff) |
fixed refactored name
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -112,15 +112,15 @@ log_carts = []; data = { COMMAND: 22, LOGIN_NAME: username, PASSWORD: token, NAME: current_show.log }; - scd = $.post("/rd-bin/rdxport.cgi", data, updateLogCartList, "xml"); + lcd = $.post("/rd-bin/rdxport.cgi", data, updateLogCartList, "xml"); group_carts = []; data = { COMMAND: 6, LOGIN_NAME: username, PASSWORD: token, GROUP_NAME: current_show.group.name, INCLUDE_CUTS: 1 }; gcd = $.post("/rd-bin/rdxport.cgi", data, updateGroupCartList, "xml"); - $.when(scd, gcd).done( - function(scres, gcres) { - if(scres[1] == 'success' && gcres[1] == 'success') { + $.when(lcd, gcd).done( + function(lcres, gcres) { + if(lcres[1] == 'success' && gcres[1] == 'success') { updateShowListing(); } } |