The apache error log has entries like these:
setlib.cfg: defined(@array) is deprecated at setlib.cfg line 53.
setlib.cfg: \t(Maybe you should just omit the defined()?)
--
TWiki:Main/PeterThoeny
- 2014-04-24
This is now in SVN trunk and 6.0 branch.
Fix in
twiki/bin/setlib.cfg
:
--- ../../TWikiRelease05x01/core/bin/setlib.cfg 2012-02-25 18:15:19.000000000 -0500
+++ bin/setlib.cfg 2014-04-23 20:43:32.000000000 -0400
@@ -50,9 +50,9 @@
# Prepend to @INC, the Perl search path for modules
unshift @INC, $twikiLibPath;
if ($defaultingCPANBASE) {
- push @INC, @localPerlLibPath if defined @localPerlLibPath;
+ push @INC, @localPerlLibPath if @localPerlLibPath;
} else {
- unshift @INC, @localPerlLibPath if defined @localPerlLibPath;
+ unshift @INC, @localPerlLibPath if @localPerlLibPath;
}
1; # Return success for module loading
--
TWiki:Main.PeterThoeny
- 2014-04-25