From 7ce348147d5a33bbcd83da53a16f24e4ddb3fc6e Mon Sep 17 00:00:00 2001
From: Chris Hallberg <crhallberg@gmail.com>
Date: Fri, 12 Feb 2016 14:36:15 -0500
Subject: [PATCH] response type mismatch in tags

---
 themes/bootstrap3/js/record.js | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/themes/bootstrap3/js/record.js b/themes/bootstrap3/js/record.js
index 8031365b325..80e9d014d6d 100644
--- a/themes/bootstrap3/js/record.js
+++ b/themes/bootstrap3/js/record.js
@@ -174,14 +174,14 @@ function refreshTagList(target, loggedin) {
   var recordSource = $(target).find('.hiddenSource').val();
   var $tagList = $(target).find('.tagList');
   if ($tagList.length > 0) {
-    $tagList.empty();
     var url = VuFind.getPath() + '/AJAX/JSON?' + $.param({method:'getRecordTags',id:recordId,'source':recordSource});
     $.ajax({
-      dataType: 'json',
+      dataType: 'html',
       url: url
     })
     .done(function(response) {
-      $tagList.replaceWith(response.responseText);
+      $tagList.empty();
+      $tagList.replaceWith(response);
       if(loggedin) {
         $tagList.addClass('loggedin');
       } else {
-- 
GitLab