From: Jason Stephenson Date: Thu, 22 Sep 2011 19:23:53 +0000 (-0400) Subject: Fix my own typo in Actor.pm line 3077. X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=f725c104303cd97827317a65d930ef97f83477fa;p=working%2FEvergreen.git Fix my own typo in Actor.pm line 3077. Signed-off-by: Jason Stephenson --- 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}; }