summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2014-09-20 03:37:40 (GMT)
committerChristian Pointner <equinox@helsinki.at>2014-09-20 03:37:40 (GMT)
commit680cef1efc6eeb41d0edfddf2d04ea480a1b553d (patch)
tree833f834c3992070de087b60f84ad52da6aee17eb
parente5325cb094af905e0968bb6e10387f050d51d56e (diff)
fixed refactored name
-rw-r--r--index.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/index.html b/index.html
index d9f8a2c..00f8cee 100644
--- a/index.html
+++ b/index.html
@@ -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();
}
}