[open-ils-commits] r13264 - trunk/Open-ILS/web/opac/skin/default/js (miker)

svn at svn.open-ils.org svn at svn.open-ils.org
Fri May 29 22:59:40 EDT 2009


Author: miker
Date: 2009-05-29 22:59:39 -0400 (Fri, 29 May 2009)
New Revision: 13264

Modified:
   trunk/Open-ILS/web/opac/skin/default/js/rdetail.js
Log:
one-character thinko in baseline online resource display, discovered by Warren Layton -- thanks Warren!

Modified: trunk/Open-ILS/web/opac/skin/default/js/rdetail.js
===================================================================
--- trunk/Open-ILS/web/opac/skin/default/js/rdetail.js	2009-05-29 19:53:10 UTC (rev 13263)
+++ trunk/Open-ILS/web/opac/skin/default/js/rdetail.js	2009-05-30 02:59:39 UTC (rev 13264)
@@ -340,7 +340,7 @@
 				}
 			}
 			$('rdetail_online').appendChild(elem('a', {href:href,'class':'classic_link'}, displayLabel));
-			if (!note && note != displayLabel) {
+			if (note && note != displayLabel) {
 				$('rdetail_online').appendChild(elem('span', {'class':'url_note'}, ' - ' + note));
 			}
 			$('rdetail_online').appendChild(elem('br'));



More information about the open-ils-commits mailing list