summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2006-07-28 13:47:56 +0000
committerAntony Dovgal <tony2001@php.net>2006-07-28 13:47:56 +0000
commita76b852989306ac4c71a32b5e792e5b21a198dec (patch)
tree4419781ea7b77a0945431bdc9c3dd7b4e5d06581
parent29a7498965ab0fbc9956299316c380bfd6baa4e8 (diff)
downloadphp-git-a76b852989306ac4c71a32b5e792e5b21a198dec.tar.gz
fix test
-rw-r--r--ext/standard/tests/file/bug24313.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/tests/file/bug24313.phpt b/ext/standard/tests/file/bug24313.phpt
index 4c6053b278..04057c58a3 100644
--- a/ext/standard/tests/file/bug24313.phpt
+++ b/ext/standard/tests/file/bug24313.phpt
@@ -1,10 +1,10 @@
--TEST--
Bug #24313 (file_exists() throws a warning on nonexistent files when is open_basedir enabled)
--INI--
-open_basedir=/bin
+open_basedir=/dev
--FILE--
<?php
- var_dump(file_exists("/bin/bogus_file_no_such_thing"));
+ var_dump(file_exists("/dev/bogus_file_no_such_thing"));
?>
--EXPECT--
bool(false)