From: erickson Date: Thu, 2 Apr 2009 18:48:44 +0000 (+0000) Subject: typo, descendents -> descendants X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=bd98069ee3b7b3de0caf81cf75abcf795b336503;p=Evergreen.git typo, descendents -> descendants git-svn-id: svn://svn.open-ils.org/ILS/trunk@12764 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/perlmods/OpenILS/Application/AppUtils.pm b/Open-ILS/src/perlmods/OpenILS/Application/AppUtils.pm index 24a2c4eab0..fe8f4b3f01 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/AppUtils.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/AppUtils.pm @@ -1230,7 +1230,7 @@ sub user_has_work_perm_at { $options ||= {}; my $func = 'permission.usr_has_perm_at'; - $func = $func.'_all' if $$options{descendents}; + $func = $func.'_all' if $$options{descendants}; my $orgs = $e->json_query({from => [$func, $e->requestor->id, $perm]}); $orgs = [map { $_->{'permission.usr_has_perm_at'} } @$orgs];