From fc74136a9066693c9fb9c51f085b2af1f8bbae5c Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Wed, 2 Jan 2008 19:19:31 +0000 Subject: [PATCH] Fixed bug #43647 (Make FindFile use PATH_SEPARATOR instead of ";") --- ext/spl/examples/findfile.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/spl/examples/findfile.inc b/ext/spl/examples/findfile.inc index 05d525a3fbd..02ab7924335 100755 --- a/ext/spl/examples/findfile.inc +++ b/ext/spl/examples/findfile.inc @@ -33,7 +33,7 @@ class FindFile extends FilterIterator function __construct($path, $file) { $this->file = $file; - $list = split(';', $path); + $list = split(PATH_SEPARATOR, $path); if (count($list) <= 1) { parent::__construct(new RecursiveIteratorIterator(new RecursiveDirectoryIterator($path))); } else {