From: Bill Erickson Date: Fri, 1 Aug 2014 17:56:18 +0000 (-0400) Subject: pcrud personality call argument mod repair X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=69be0cd3ee2282c763c5349bc230d6fce878c851;p=working%2FEvergreen.git pcrud personality call argument mod repair Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Utils/CStoreEditor.pm b/Open-ILS/src/perlmods/lib/OpenILS/Utils/CStoreEditor.pm index 9f8f5fce3c..59175c8101 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Utils/CStoreEditor.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Utils/CStoreEditor.pm @@ -829,7 +829,7 @@ sub runmethod { my $err = ''; # In pcrud mode, sub authtoken returns 'ANONYMOUS' if one is not yet set - unshift(@$arg, $self->authtoken) if ($self->personality eq 'open-ils.pcrud'); + unshift(@arg, $self->authtoken) if ($self->personality eq 'open-ils.pcrud'); try { $obj = $self->request($method, @arg);