From: miker Date: Tue, 3 Nov 2009 19:47:23 +0000 (+0000) Subject: backporting r14747: use the individual opcodes instead of the :load tag, which is... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=69de2a315f09f30c51ff0c9080eeec4de3a71466;p=Evergreen.git backporting r14747: use the individual opcodes instead of the :load tag, which is not supported until opcodes in perl 5.10 git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_6@14748 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Trigger/Event.pm b/Open-ILS/src/perlmods/OpenILS/Application/Trigger/Event.pm index e64b9d0d85..0d696277f5 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/Trigger/Event.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Trigger/Event.pm @@ -361,7 +361,7 @@ sub build_environment { try { my $compartment = new Safe; - $compartment->permit(':default',':load'); + $compartment->permit(':default','require','dofile','caller'); $compartment->share('$current_environment'); $self->environment->{EventProcessor} = $self;