From: Dan Scott Date: Wed, 15 Jun 2011 03:12:28 +0000 (-0400) Subject: Get the "Borrow similar" link correct X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=86d3d737c26b0e7899aad6b35986250b7b77ff8e;p=working%2FEvergreen.git Get the "Borrow similar" link correct A copy/paste error led to a link that didn't go anywhere in the "Borrow similar online" case. Signed-off-by: Dan Scott --- diff --git a/Open-ILS/web/opac/skin/default/js/result_common.js b/Open-ILS/web/opac/skin/default/js/result_common.js index 3988e1e45f..6a5d8c3024 100644 --- a/Open-ILS/web/opac/skin/default/js/result_common.js +++ b/Open-ILS/web/opac/skin/default/js/result_common.js @@ -763,7 +763,7 @@ function renderOpenLibraryLinks(response) { ); } else if (ol_ebooks[isbn]['similar_lendable']) { createOpenLibraryLink( - isbn, ol_ebooks[isbn]['similar_full'], 'Borrow similar online' + isbn, ol_ebooks[isbn]['similar_lendable'], 'Borrow similar online' ); } }