From: <de...@de...> - 2017-05-31 08:35:54
|
Author: HideyoImazu Date: 2017-05-31 08:26:42 +0000 (Wed, 31 May 2017) New Revision: 30346 Trac url: http://develop.twiki.org/trac/changeset/30346 Modified: twiki/branches/TWikiRelease06x00/core/lib/TWiki/Access.pm Log: Item7791: Error in Detailed Items Query - Use of uninitialized value in concatenation Modified: twiki/branches/TWikiRelease06x00/core/lib/TWiki/Access.pm =================================================================== --- twiki/branches/TWikiRelease06x00/core/lib/TWiki/Access.pm 2017-05-31 08:26:11 UTC (rev 30345) +++ twiki/branches/TWikiRelease06x00/core/lib/TWiki/Access.pm 2017-05-31 08:26:42 UTC (rev 30346) @@ -507,7 +507,7 @@ } if( defined( $allowText ) && $allowText =~ /\S/ ) { my $foreignWebAllowDynamic = 0; - $allowText =~ s/^\s*\+/$allowWeb, /; + $allowText =~ s/^\s*\+/$allowWeb, / if defined $allowWeb; if ( $isDynamic && $allowText =~ /%/ ) { if ( $session->{webName} ne $web ) { $foreignWebAllowDynamic = 1; |