|
From: Chris W. <la...@us...> - 2001-11-06 14:59:27
|
Update of /cvsroot/openinteract/OpenInteract
In directory usw-pr-cvs1:/tmp/cvs-serv23714
Modified Files:
OpenInteract.pm
Log Message:
added 'use Apache::Request'
Index: OpenInteract.pm
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract/OpenInteract.pm,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** OpenInteract.pm 2001/10/30 02:24:00 1.18
--- OpenInteract.pm 2001/11/06 14:59:23 1.19
***************
*** 5,12 ****
use strict;
use Apache::Constants qw( :common :remotehost );
use Data::Dumper qw( Dumper );
@OpenInteract::ISA = ();
! $OpenInteract::VERSION = 1.31;
--- 5,13 ----
use strict;
use Apache::Constants qw( :common :remotehost );
+ use Apache::Request;
use Data::Dumper qw( Dumper );
@OpenInteract::ISA = ();
! $OpenInteract::VERSION = 1.35;
***************
*** 81,85 ****
# object
! my $STASH_CLASS = $apache->dir_config( 'StashClass' );
unless ( $REQ{ $STASH_CLASS } ) {
eval "require $STASH_CLASS";
--- 82,86 ----
# object
! my $STASH_CLASS = $apache->dir_config( 'OIStashClass' );
unless ( $REQ{ $STASH_CLASS } ) {
eval "require $STASH_CLASS";
|