moved redirect to latest mod_perl
authorerickson <erickson@9efc2488-bf62-4759-914b-345cdb29e865>
Wed, 27 Jul 2005 15:25:14 +0000 (15:25 +0000)
committererickson <erickson@9efc2488-bf62-4759-914b-345cdb29e865>
Wed, 27 Jul 2005 15:25:14 +0000 (15:25 +0000)
added a .js file to the opac that was missing
fixed unitialized value logging in appsession

git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@438 9efc2488-bf62-4759-914b-345cdb29e865

src/perlmods/OpenSRF/AppSession.pm

index e7dbde3..80e62c2 100644 (file)
@@ -740,7 +740,9 @@ sub recv {
 
        #$args{timeout} = 0 if ($self->complete);
 
-       $logger->debug( ref($self) ."->recv with timeout " . $args{timeout}, INTERNAL );
+       if(defined($args{timeout})) {
+               $logger->debug( ref($self) ."->recv with timeout " . $args{timeout}, INTERNAL );
+       }
 
        $args{count} ||= 1;