• Do
not register here on develop.twiki.org, login with your twiki.org account.
• Use
Item7848 for generic
doc work for TWiki-6.1.1. Use
Item7851 for doc work on
extensions that are not part of a release.
More... Close
• Anything you create or change in standard webs (Main, TWiki, Sandbox etc) will be automatically reverted on every SVN update.
• Does this site look broken?. Use the LitterTray web for test cases.
Item7784: PublishContrib doesn't compile under Perl 5.020 or newer
Detail
PublishContrib/lib/TWiki/Contrib/Publish.pm
contains a construct which has been deprecated in Perl 5.014 and doesn't compile in 5.020 or higher:
for my $tag qw( REVTITLE REVARG REVISIONS MAXREV CURRREV ) {
This must be written like this:
for my $tag (qw( REVTITLE REVARG REVISIONS MAXREV CURRREV )) {
--
TWiki:Main/HaraldJoerg
- 2017-03-27
Thanks for the report - it saved a lot of work
--
TWiki:Main.DominikReusser
- 2017-05-03