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=6a812b19e7bf459908e3e7b74f750c44433e9feb;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 c4b002e478..691eccebf0 100644 --- a/Open-ILS/web/opac/skin/default/js/result_common.js +++ b/Open-ILS/web/opac/skin/default/js/result_common.js @@ -742,7 +742,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' ); } }