|
From: Chris W. <la...@us...> - 2001-10-30 02:24:42
|
Update of /cvsroot/openinteract/OpenInteract/OpenInteract/Template
In directory usw-pr-cvs1:/tmp/cvs-serv660/OpenInteract/Template
Modified Files:
Process.pm
Log Message:
always use () after a variable method call (5.6 didn't complain...)
Index: Process.pm
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract/OpenInteract/Template/Process.pm,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** Process.pm 2001/10/25 15:25:51 1.17
--- Process.pm 2001/10/30 02:24:39 1.18
***************
*** 184,188 ****
foreach my $block_class ( keys %{ $pkg->{template_block} } ) {
my $block_method = $pkg->{template_block}{ $block_class };
! my $item_blocks = eval { $block_class->$block_method };
foreach my $block_name ( keys %{ $item_blocks } ) {
$R->DEBUG && $R->scrib( 1, "Found template block ($block_name) in",
--- 184,188 ----
foreach my $block_class ( keys %{ $pkg->{template_block} } ) {
my $block_method = $pkg->{template_block}{ $block_class };
! my $item_blocks = eval { $block_class->$block_method() };
foreach my $block_name ( keys %{ $item_blocks } ) {
$R->DEBUG && $R->scrib( 1, "Found template block ($block_name) in",
|