[open-ils-commits] r12945 - branches/rel_1_4_0/Open-ILS/web/opac/skin/default/js (miker)

svn at svn.open-ils.org svn at svn.open-ils.org
Tue Apr 21 12:24:55 EDT 2009


Author: miker
Date: 2009-04-21 12:24:52 -0400 (Tue, 21 Apr 2009)
New Revision: 12945

Modified:
   branches/rel_1_4_0/Open-ILS/web/opac/skin/default/js/rdetail.js
Log:
Patch from James Fournie fixing regression of copy display in deep hierarchies which was introduced by a partial fixed in r12470

Modified: branches/rel_1_4_0/Open-ILS/web/opac/skin/default/js/rdetail.js
===================================================================
--- branches/rel_1_4_0/Open-ILS/web/opac/skin/default/js/rdetail.js	2009-04-21 16:24:30 UTC (rev 12944)
+++ branches/rel_1_4_0/Open-ILS/web/opac/skin/default/js/rdetail.js	2009-04-21 16:24:52 UTC (rev 12945)
@@ -536,7 +536,7 @@
 		var loc = findOrgUnit(getLocation());
 
 		if( node ) {
-			if( !orgIsMine(node, loc) ) return;
+			if( !orgIsMine(node, loc) && !orgIsMine(loc,node) ) return;
 
 		} else {
 



More information about the open-ils-commits mailing list