summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2006-04-10 23:48:38 +0000
committerIlia Alshanetsky <iliaa@php.net>2006-04-10 23:48:38 +0000
commit490609ffc40d5cbd5586bc3879342fb2bf89ae85 (patch)
tree3d2cc0b1a0fbefde04bab06ead29619f758322df /ext
parentc4b16064660c926175c11eeab4699288e3d397ea (diff)
downloadphp-git-490609ffc40d5cbd5586bc3879342fb2bf89ae85.tar.gz
MFB51: fixed test
Diffstat (limited to 'ext')
-rw-r--r--ext/standard/tests/file/bug24313.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/tests/file/bug24313.phpt b/ext/standard/tests/file/bug24313.phpt
index dcea58ffef..4b84bcac4c 100644
--- a/ext/standard/tests/file/bug24313.phpt
+++ b/ext/standard/tests/file/bug24313.phpt
@@ -4,7 +4,7 @@ Bug #24313 (file_exists() warning on non-existant files when is open_basedir ena
open_basedir=/tmp
--FILE--
<?php
- var_dump(file_exists("./foobar"));
+ var_dump(file_exists("/tmp/bogus_file_no_such_thing"));
?>
--EXPECT--
bool(false)