Update of /cvsroot/openinteract/OpenInteract2/pkg/base_box/OpenInteract2/Action
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24912/OpenInteract2/Action
Modified Files:
Box.pm
Log Message:
fix blank template declaration
Index: Box.pm
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract2/pkg/base_box/OpenInteract2/Action/Box.pm,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** Box.pm 30 Mar 2005 02:56:07 -0000 1.15
--- Box.pm 31 Oct 2005 02:34:36 -0000 1.16
***************
*** 187,191 ****
}
! my $shell_template = $self->param( 'box_template' ) || $DEFAULT_SHELL;
# user has requested to keep box naked...
--- 187,192 ----
}
! my $shell_template = $action->param( 'box_template' )
! || $DEFAULT_SHELL;
# user has requested to keep box naked...
***************
*** 193,198 ****
push @content, $base_content;
$log->is_debug &&
! $log->debug( "No wrapper template used by request, ",
! "box is naked! (cover your eyes)" );
}
else {
--- 194,199 ----
push @content, $base_content;
$log->is_debug &&
! $log->debug( "Box ", $action->name, " has requested ",
! "that no wrapper template be used" );
}
else {
|