On Tue, 4 Jul 2000, David Jourard wrote:

> At 06:24 PM 7/4/00 +0100, David Mitchell wrote:
> > > This worked but now I get upon start up of the apache httpd daemon:
> > > defined(@array) is deprecated at c:/Perl/site/5.6.0/lib/Apache/DBI.pm
> > > line 135 (Maybe you should just omit the defined()?)
> >
> >Just edit c:/Perl/site/5.6.0/lib/Apache/DBI.pm, deleting the 'defined'
> >on line 135 :-)
> 
> I did look and its not so obvious what to comment out without mucking the 
> file ... Does anyone else have this one installed and had the same problem 
> I had.  I'm using the win32 version by Randy Kobes.

Line 135 looks like
     if (defined @ChildConnect) {
Try changing it to
     if (@ChildConnect) {
and see if that helps.

best regards,
randy kobes


Reply via email to