From f725c104303cd97827317a65d930ef97f83477fa Mon Sep 17 00:00:00 2001 From: Jason Stephenson Date: Thu, 22 Sep 2011 15:23:53 -0400 Subject: [PATCH] Fix my own typo in Actor.pm line 3077. Signed-off-by: Jason Stephenson --- Open-ILS/src/perlmods/lib/OpenILS/Application/Actor.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Actor.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Actor.pm index 367f6cf0d4..03fd648ed7 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Actor.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Actor.pm @@ -3074,7 +3074,7 @@ sub create_user_opt_in_at_org { # get the org unit at that depth my $org = $e->json_query({ from => [ 'actor.org_unit_ancestor_at_depth', $wsou, $opt_depth ]}); - if ($ref($org) eq 'ARRAY') { + if (ref($org) eq 'ARRAY') { $org = $org->[0]; $org_id = $org->{id}; } -- 2.11.0