phpBB

Code Changes

File: phpbb/recursive_dot_prefix_filter_iterator.php

  Unmodified   Added   Modified   Removed
Line 25Line 25
	public function accept()
{
$filename = $this->current()->getFilename();

	public function accept()
{
$filename = $this->current()->getFilename();

		return !$this->current()->isDir() || $filename[0] !== '.';

		return $filename[0] !== '.' || !$this->current()->isDir();

	}
}


	}
}