From 53e17993cfdf0a4d9f31cfc404297a952a311da1 Mon Sep 17 00:00:00 2001 From: miker Date: Tue, 21 Apr 2009 16:24:30 +0000 Subject: [PATCH] Patch from James Fournie fixing regression of copy display in deep hierarchies which was introduced by a partial fixed in r12470 git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_4@12944 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/web/opac/skin/default/js/rdetail.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/web/opac/skin/default/js/rdetail.js b/Open-ILS/web/opac/skin/default/js/rdetail.js index a3d0db9871..ac46ded111 100644 --- a/Open-ILS/web/opac/skin/default/js/rdetail.js +++ b/Open-ILS/web/opac/skin/default/js/rdetail.js @@ -536,7 +536,7 @@ function _rdetailRows(node) { var loc = findOrgUnit(getLocation()); if( node ) { - if( !orgIsMine(node, loc) ) return; + if( !orgIsMine(node, loc) && !orgIsMine(loc,node) ) return; } else { -- 2.11.0