Skip to content

Commit

Permalink
Item13865: Don't detect ,pfv directories as webs.
Browse files Browse the repository at this point in the history
  • Loading branch information
gac410 committed Nov 22, 2015
1 parent a43afd5 commit b5ef863
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/lib/Foswiki/Configure/FileUtil.pm
Expand Up @@ -397,7 +397,8 @@ sub checkTreePerms {

if ( $perms =~ m/p/
&& $path =~ m/\Q$Foswiki::cfg{DataDir}\E\/(.+)$/
&& -d $path )
&& -d $path
&& ( substr( $path, -4 ) ne ',pfv' ) )
{
unless ( -e "$path/$Foswiki::cfg{WebPrefsTopicName}.txt" ) {
unless ( $report{missingFile}++ > $options{maxMissingFile} ) {
Expand Down

0 comments on commit b5ef863

Please sign in to comment.