TPAC: Fix filtering of org units in record details
authorDan Scott <dan@coffeecode.net>
Wed, 21 Mar 2012 04:40:42 +0000 (00:40 -0400)
committerMike Rylander <mrylander@gmail.com>
Fri, 23 Mar 2012 16:38:06 +0000 (12:38 -0400)
The syntax for the filtering clause isn't quite right for the
non-opac-visible org units; remove the braces and win.

Signed-off-by: Dan Scott <dan@coffeecode.net>
Signed-off-by: Jason Stephenson <jstephenson@mvlc.org>
Signed-off-by: Mike Rylander <mrylander@gmail.com>
Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Record.pm

index a0372ac..307e321 100644 (file)
@@ -252,7 +252,7 @@ sub mk_copy_query {
         $query->{where}->{'+acp'}->{opac_visible} = 't';
         $query->{from}->{'acp'}->{'acpl'}->{filter} = {opac_visible => 't'};
         $query->{from}->{'acp'}->{'ccs'}->{filter} = {opac_visible => 't'};
-        $query->{where}->{'+aou'}->{opac_visible} = {'t'};
+        $query->{where}->{'+aou'}->{opac_visible} = 't';
     }
 
     return $query;