Skip to content

Commit 45977c6

Browse files
committed
Merge branch 'PHP-5.3' into PHP-5.4
* PHP-5.3: Fix bug 61683 tests\basic\bug20539.phpt fails
2 parents d588d01 + aaed0af commit 45977c6

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/basic/bug20539.phpt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ session.save_path=./tests/basic/
1111
<?php
1212
print "good :)\n";
1313
$filename = __DIR__ . '/sess_' . session_id();
14-
var_dump(unlink($filename));
14+
var_dump(file_exists($filename));
15+
@unlink($filename);
1516
?>
1617
--EXPECT--
1718
good :)

0 commit comments

Comments
 (0)