Browse Source

Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  Fix bug 61683 tests\basic\bug20539.phpt fails
pull/58/head
Anatoliy Belsky 14 years ago
parent
commit
45977c6aae
  1. 3
      tests/basic/bug20539.phpt

3
tests/basic/bug20539.phpt

@ -11,7 +11,8 @@ session.save_path=./tests/basic/
<?php
print "good :)\n";
$filename = __DIR__ . '/sess_' . session_id();
var_dump(unlink($filename));
var_dump(file_exists($filename));
@unlink($filename);
?>
--EXPECT--
good :)

Loading…
Cancel
Save