[open-ils-commits] r12320 - trunk/Open-ILS/src/perlmods/OpenILS/Application/Trigger (erickson)
svn at svn.open-ils.org
svn at svn.open-ils.org
Fri Feb 27 16:21:29 EST 2009
Author: erickson
Date: 2009-02-27 16:21:25 -0500 (Fri, 27 Feb 2009)
New Revision: 12320
Modified:
trunk/Open-ILS/src/perlmods/OpenILS/Application/Trigger/Reactor.pm
Log:
TT needs a ref to process an inline string
Modified: trunk/Open-ILS/src/perlmods/OpenILS/Application/Trigger/Reactor.pm
===================================================================
--- trunk/Open-ILS/src/perlmods/OpenILS/Application/Trigger/Reactor.pm 2009-02-27 20:55:27 UTC (rev 12319)
+++ trunk/Open-ILS/src/perlmods/OpenILS/Application/Trigger/Reactor.pm 2009-02-27 21:21:25 UTC (rev 12320)
@@ -16,7 +16,7 @@
my $output = '';
my $tt = Template->new;
- $tt->process($env->{template}, $env, \$output) or
+ $tt->process(\$env->{template}, $env, \$output) or
$logger->error("Error processing Trigger template: " . $tt->error);
return $output;
More information about the open-ils-commits
mailing list