From: Chris W. <la...@us...> - 2004-09-27 13:45:59
|
Update of /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7920/lib/OpenInteract2 Modified Files: Context.pm Log Message: OIN-81: get rid of warning Index: Context.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/Context.pm,v retrieving revision 1.74 retrieving revision 1.75 diff -C2 -d -r1.74 -r1.75 *** Context.pm 26 Sep 2004 19:26:18 -0000 1.74 --- Context.pm 27 Sep 2004 13:45:49 -0000 1.75 *************** *** 454,458 **** $log_act->debug( "Try to find action name for URL '$action_url'" ); my $server_config = $self->server_config; ! my $action_name = $server_config->{action_url}{ $action_url }; $log_act->is_debug && $log_act->debug( "Found name '$action_name' for URL '$action_url'" ); --- 454,458 ---- $log_act->debug( "Try to find action name for URL '$action_url'" ); my $server_config = $self->server_config; ! my $action_name = $server_config->{action_url}{ $action_url } || ''; $log_act->is_debug && $log_act->debug( "Found name '$action_name' for URL '$action_url'" ); |