diff options
author | Stanislav Malyshev <stas@php.net> | 2015-09-01 00:59:55 -0700 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2015-09-01 00:59:55 -0700 |
commit | 3605d1baf5f333f0734a23b6c5c53a0309895f5a (patch) | |
tree | 668a2bc1acc658dd99a7131ad4d72b9c16fdd09a | |
parent | 6935058a986034c41d893fa36104b1f68777fd39 (diff) | |
parent | 906f19f1365488f90f7473e833a7a13f2c1387ac (diff) | |
download | php-git-3605d1baf5f333f0734a23b6c5c53a0309895f5a.tar.gz |
Merge branch 'PHP-5.4.45' into PHP-5.5.29
* PHP-5.4.45:
fix test
-rw-r--r-- | ext/zip/tests/bug70350.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/zip/tests/bug70350.phpt b/ext/zip/tests/bug70350.phpt index c308f549cf..d81de65a32 100644 --- a/ext/zip/tests/bug70350.phpt +++ b/ext/zip/tests/bug70350.phpt @@ -15,7 +15,7 @@ $archive->addEmptyDir("../down2/"); $archive->close(); $archive2 = new ZipArchive(); -$archive2->open('a.zip'); +$archive2->open("$dir/a.zip"); $archive2->extractTo($dir); $archive2->close(); var_dump(file_exists("$dir/down2/")); |