cvsuser     02/11/01 11:54:24

  Modified:    App-Context/lib/App SessionObject.pm
  Log:
  don't flag an unhandled event as exceptional
  
  Revision  Changes    Path
  1.2       +5 -4      p5ee/App-Context/lib/App/SessionObject.pm
  
  Index: SessionObject.pm
  ===================================================================
  RCS file: /cvs/public/p5ee/App-Context/lib/App/SessionObject.pm,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -w -r1.1 -r1.2
  --- SessionObject.pm  15 Oct 2002 21:58:49 -0000      1.1
  +++ SessionObject.pm  1 Nov 2002 19:54:24 -0000       1.2
  @@ -1,6 +1,6 @@
   
   #############################################################################
  -## $Id: SessionObject.pm,v 1.1 2002/10/15 21:58:49 spadkins Exp $
  +## $Id: SessionObject.pm,v 1.2 2002/11/01 19:54:24 spadkins Exp $
   #############################################################################
   
   package App::SessionObject;
  @@ -232,9 +232,10 @@
           }
           $context = $self->{context};
           if ($container eq "default") {
  -            $context = $self->{context};
  -            $context->add_message("Event not handled: @_\n");
  -            return 0;
  +            return 1;
  +            #$context = $self->{context};
  +            #$context->add_message("Event not handled: @_\n");
  +            #return 0;
           }
           $w = $context->session_object($container);
           return $w->handle_event(@_);  # bubble the event to container session_object
  
  
  


Reply via email to