[open-ils-commits] r12944 - branches/rel_1_4/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:33 EDT 2009
Author: miker
Date: 2009-04-21 12:24:30 -0400 (Tue, 21 Apr 2009)
New Revision: 12944
Modified:
branches/rel_1_4/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/Open-ILS/web/opac/skin/default/js/rdetail.js
===================================================================
--- branches/rel_1_4/Open-ILS/web/opac/skin/default/js/rdetail.js 2009-04-21 16:23:16 UTC (rev 12943)
+++ branches/rel_1_4/Open-ILS/web/opac/skin/default/js/rdetail.js 2009-04-21 16:24:30 UTC (rev 12944)
@@ -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