diff --git a/module/VuFind/src/VuFind/Controller/AjaxController.php b/module/VuFind/src/VuFind/Controller/AjaxController.php index 29d68084e139817046e9e7354d496b9c85e58817..72ef9fbe439c3b2a68b94cfa056a68c44737696a 100644 --- a/module/VuFind/src/VuFind/Controller/AjaxController.php +++ b/module/VuFind/src/VuFind/Controller/AjaxController.php @@ -502,12 +502,8 @@ class AjaxController extends AbstractBase // if this item was saved, add it to the list of saved items. foreach ($data as $list) { $result[$i][] = [ - 'record_id' => $id, - 'record_source' => $source, - 'resource_id' => $list->id, 'list_id' => $list->list_id, - 'list_title' => $list->list_title, - 'record_number' => $i + 'list_title' => $list->list_title ]; } } diff --git a/themes/bootstrap3/js/check_save_statuses.js b/themes/bootstrap3/js/check_save_statuses.js index 9f010ecf2db82afce474c6666bd120475b64b274..b9b6e3e1f7b69b3a5a746b9910e1bcb0e77a7880 100644 --- a/themes/bootstrap3/js/check_save_statuses.js +++ b/themes/bootstrap3/js/check_save_statuses.js @@ -21,7 +21,7 @@ function checkSaveStatuses() { data: {id:ids, 'source':srcs}, success: function(response) { if(response.status == 'OK') { - for (var rn=0; rn<response.data.length; rn++) { + for (var rn in response.data) { var list = $('#result'+rn).find('.savedLists') var html = list.find('strong')[0].outerHTML+'<ul>'; for (var i=0; i<response.data[rn].length; i++) {