Skip to content
Snippets Groups Projects
Commit 79e66394 authored by rswindell's avatar rswindell
Browse files

bulkupload method now returns false if user aborted upload procedure.

parent 37d8a01f
Branches
Tags
No related merge requests found
...@@ -1707,9 +1707,7 @@ js_bulkupload(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval ...@@ -1707,9 +1707,7 @@ js_bulkupload(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval
return(JS_TRUE); return(JS_TRUE);
} }
sbbs->bulkupload(i); *rval = BOOLEAN_TO_JSVAL(sbbs->bulkupload(i)==0);
*rval = BOOLEAN_TO_JSVAL(JS_TRUE);
return(JS_TRUE); return(JS_TRUE);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment