diff options
author | Anatoliy Belsky <ab@php.net> | 2012-04-30 12:10:43 +0200 |
---|---|---|
committer | Anatoliy Belsky <ab@php.net> | 2012-04-30 12:10:43 +0200 |
commit | 36836f147c1a2fcc1d35fdd2b51e54c0a083fe13 (patch) | |
tree | 8b3d6f1d40acfb1ae8c67d79d2c97df7f05e9bc4 | |
parent | 455040c4ab07b04547fb6791806d1a9cf6e5a0af (diff) | |
parent | 680685127fc60fb1891effb7afb33639aa231502 (diff) | |
download | php-git-36836f147c1a2fcc1d35fdd2b51e54c0a083fe13.tar.gz |
Merge branch 'PHP-5.3' into PHP-5.4
* PHP-5.3:
Fix bug 61870 ext\session\tests\bug42596.phpt fails
-rw-r--r-- | ext/session/tests/bug42596.phpt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/session/tests/bug42596.phpt b/ext/session/tests/bug42596.phpt index fd9a602921..3d11607b4c 100644 --- a/ext/session/tests/bug42596.phpt +++ b/ext/session/tests/bug42596.phpt @@ -1,7 +1,10 @@ --TEST-- Bug #42596 (session.save_path MODE option will not set "write" bit for group or world) --SKIPIF-- -<?php include('skipif.inc'); ?> +<?php + if(substr(PHP_OS, 0, 3) == "WIN") die("skip not for Windows"); + include('skipif.inc'); +?> --INI-- session.use_cookies=0 session.cache_limiter= |