From: phasefx Date: Mon, 22 Oct 2007 05:42:02 +0000 (+0000) Subject: missing semi-colon; I don't care if it's optional in javascript :) X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=e0417de3219e875a055d85dcfd116663c2199aec;p=Evergreen.git missing semi-colon; I don't care if it's optional in javascript :) git-svn-id: svn://svn.open-ils.org/ILS/trunk@7904 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/xul/staff_client/server/patron/items.js b/Open-ILS/xul/staff_client/server/patron/items.js index e44521e7a0..6e8da28da1 100644 --- a/Open-ILS/xul/staff_client/server/patron/items.js +++ b/Open-ILS/xul/staff_client/server/patron/items.js @@ -306,7 +306,7 @@ patron.items.prototype = { // A renewed circ is a new circ, and has a new circ_id. obj.list_circ_map[ r[0].payload.circ.id() ] = obj.list_circ_map[ circ_id ]; } else { - var msg = bc + ' not renewed.\n' + r[0].textcode + r[0].desc + var msg = bc + ' not renewed.\n' + r[0].textcode + r[0].desc; l.setAttribute('value', msg); alert(msg); }