iliaa Wed Jan 2 19:20:15 2008 UTC
Modified files: (Branch: PHP_5_2)
/php-src/ext/spl/examples findfile.inc
/php-src NEWS
Log:
MFB: Fixed bug #43647 (Make FindFile use PATH_SEPARATOR instead of ";")
http://cvs.php.net/viewvc.cgi/php-src/ext/spl/examples/findfile.inc?r1=1.7&r2=1.7.4.1&diff_format=u
Index: php-src/ext/spl/examples/findfile.inc
diff -u php-src/ext/spl/examples/findfile.inc:1.7
php-src/ext/spl/examples/findfile.inc:1.7.4.1
--- php-src/ext/spl/examples/findfile.inc:1.7 Tue Feb 8 19:10:04 2005
+++ php-src/ext/spl/examples/findfile.inc Wed Jan 2 19:20:15 2008
@@ -33,7 +33,7 @@
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 {
http://cvs.php.net/viewvc.cgi/php-src/NEWS?r1=1.2027.2.547.2.1045&r2=1.2027.2.547.2.1046&diff_format=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.2027.2.547.2.1045 php-src/NEWS:1.2027.2.547.2.1046
--- php-src/NEWS:1.2027.2.547.2.1045 Tue Jan 1 16:51:08 2008
+++ php-src/NEWS Wed Jan 2 19:20:15 2008
@@ -5,6 +5,7 @@
- Fixed bug #43663 (Extending PDO class with a __call() function doesn't
work).
(David Soria Parra)
+- Fixed bug #43647 (Make FindFile use PATH_SEPARATOR instead of ";"). (Ilia)
- Fixed bug #43635 (mysql extension ingores INI settings on NULL values
passed to mysql_connect()). (Ilia)
- Fixed bug #43620 (Workaround for a bug inside libcurl 7.16.2 that can result
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php