> Has anyone ever seen this:
>
> Starting httpd.....defined(@array) is deprecated at
> /usr/local/lib/perl5/site_perl/5.6.0/Apache/DBI.pm line 135.
> (Maybe you should just omit the defined()?)
>
>
> Know of any way to fix it?
>
Change the
if (defined @ChildConnect)
in line 135 of Apache/DBI.pm to
if (@ChildConnect)
of course you can remove the if block at all, because the for in the next
line will not iterate on an empty array anyway.
Edmund,
is this a know issue? if not please fix it in your next release, because the
result of a defined on a aggreate isn't defined in Perl, so you should avoid
it.
Gerald
-------------------------------------------------------------
Gerald Richter ecos electronic communication services gmbh
Internetconnect * Webserver/-design/-datenbanken * Consulting
Post: Tulpenstrasse 5 D-55276 Dienheim b. Mainz
E-Mail: [EMAIL PROTECTED] Voice: +49 6133 925151
WWW: http://www.ecos.de Fax: +49 6133 925152
-------------------------------------------------------------
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]