Skip to content
Snippets Groups Projects
Commit 75af5778 authored by Robin Appelman's avatar Robin Appelman
Browse files

pass progresskey the correct way during calender import

parent 31bba86e
Branches
No related tags found
No related merge requests found
......@@ -44,7 +44,7 @@ Calendar_Import={
$('#newcalendar').attr('readonly', 'readonly');
$('#calendar').attr('disabled', 'disabled');
var progresskey = $('#progresskey').val();
$.post(OC.filePath('calendar', 'ajax/import', 'import.php') + '?progresskey='+progresskey, {method: String (method), calname: String (calname), path: String (path), file: String (filename), id: String (calid)}, function(data){
$.post(OC.filePath('calendar', 'ajax/import', 'import.php'), {progresskey: progresskey, method: String (method), calname: String (calname), path: String (path), file: String (filename), id: String (calid)}, function(data){
if(data.status == 'success'){
$('#progressbar').progressbar('option', 'value', 100);
$('#import_done').css('display', 'block');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment