Skip to content

Commit 16f9f46

Browse files
committed
Merge branch 'PHP-5.3' of https://git.php.net/repository/php-src into PHP-5.3
* 'PHP-5.3' of https://git.php.net/repository/php-src: Skip test if directory does not exist Updated NEWS
2 parents 019bdff + 7468fc0 commit 16f9f46

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ PHP NEWS
55
- Core:
66
. Fixed bug #63451 (config.guess file does not have AIX 7 defined,
77
shared objects are not created). (kemcline at au1 dot ibm dot com)
8+
- Apache2 Handler SAPI:
9+
. Enabled Apache 2.4 configure option for Windows (Pierre, Anatoliy)
10+
811

912
?? ??? 2012, PHP 5.3.19
1013

UPGRADING

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -484,6 +484,8 @@ UPGRADE NOTES - PHP 5.3
484484
must be activated manually with the "extension = php_com_dotnet.dll" directive
485485
in php.ini.
486486

487+
- Apache 2.4 handler is supported as of PHP 5.3.20
488+
487489
=====================
488490
11.1 New in PHP 5.3.4
489491
=====================

tests/security/open_basedir_001.phpt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ openbase_dir runtime tightning
55
if (substr(PHP_OS, 0, 3) == 'WIN') {
66
die('skip.. only for unix');
77
}
8+
if (!is_dir("/usr/local/bin")) {
9+
die('skip.. no /usr/local/bin on this machine');
10+
}
811
--INI--
912
open_basedir=/usr/local
1013
--FILE--

0 commit comments

Comments
 (0)