diff options
author | Nils Adermann <naderman@naderman.de> | 2011-11-18 13:16:32 +0100 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2011-11-18 13:16:32 +0100 |
commit | acc42bb2e9ea2556b47030c3c83c0bfac551eea5 (patch) | |
tree | f13df456a17fb82e709423903de9007f581dfd05 /phpBB/includes/extension | |
parent | ef33bd72d04cf778ced3432c026e982cd3571dab (diff) | |
download | forums-acc42bb2e9ea2556b47030c3c83c0bfac551eea5.tar forums-acc42bb2e9ea2556b47030c3c83c0bfac551eea5.tar.gz forums-acc42bb2e9ea2556b47030c3c83c0bfac551eea5.tar.bz2 forums-acc42bb2e9ea2556b47030c3c83c0bfac551eea5.tar.xz forums-acc42bb2e9ea2556b47030c3c83c0bfac551eea5.zip |
[feature/extension-manager] Clarify is_dir parameter description
PHPBB3-10323
Diffstat (limited to 'phpBB/includes/extension')
-rw-r--r-- | phpBB/includes/extension/finder.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/phpBB/includes/extension/finder.php b/phpBB/includes/extension/finder.php index d6d3b176d3..ee8ff2ccf4 100644 --- a/phpBB/includes/extension/finder.php +++ b/phpBB/includes/extension/finder.php @@ -249,7 +249,8 @@ class phpbb_extension_finder * A wrapper around the general find which prepends a root path to results * * @param bool $cache Whether the result should be cached - * @param bool $is_dir Whether the found items should be directories + * @param bool $is_dir Directories will be returned when true, only files + * otherwise * @return array An array of paths to found items */ protected function find_with_root_path($cache = true, $is_dir = false) @@ -269,7 +270,8 @@ class phpbb_extension_finder * Finds all file system entries matching the configured options * * @param bool $cache Whether the result should be cached - * @param bool $is_dir Whether the found items should be directories + * @param bool $is_dir Directories will be returned when true, only files + * otherwise * @return array An array of paths to found items */ public function find($cache = true, $is_dir = false) |