home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / xampp / xampp-perl-addon-1.4.9-installer.exe / delete.al < prev    next >
Encoding:
Text File  |  2003-09-17  |  516 b   |  20 lines

  1. # NOTE: Derived from blib\lib\CGI\Session.pm.
  2. # Changes made here will be lost when autosplit is run again.
  3. # See AutoSplit.pm.
  4. package CGI::Session;
  5.  
  6. #line 935 "blib\lib\CGI\Session.pm (autosplit into blib\lib\auto\CGI\Session\delete.al)"
  7. sub delete {
  8.     my $self = shift;
  9.  
  10.     # If it was already deleted, make a confession!
  11.     if ( $self->{_STATUS} == DELETED ) {
  12.         confess "delete attempt on deleted session";
  13.     }
  14.  
  15.     $self->{_STATUS} = DELETED;
  16. }
  17.  
  18. # end of CGI::Session::delete
  19. 1;
  20.