Skip to content

Commit

Permalink
Merge branch 'PHP-5.3' of https://git.php.net/repository/php-src into…
Browse files Browse the repository at this point in the history
… PHP-5.3

* 'PHP-5.3' of https://git.php.net/repository/php-src:
  Skip test if directory does not exist
  Updated NEWS
  • Loading branch information
cjbj committed Nov 16, 2012
2 parents 019bdff + 7468fc0 commit 16f9f46
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
3 changes: 3 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ PHP NEWS
- Core:
. Fixed bug #63451 (config.guess file does not have AIX 7 defined,
shared objects are not created). (kemcline at au1 dot ibm dot com)
- Apache2 Handler SAPI:
. Enabled Apache 2.4 configure option for Windows (Pierre, Anatoliy)


?? ??? 2012, PHP 5.3.19

Expand Down
2 changes: 2 additions & 0 deletions UPGRADING
Original file line number Diff line number Diff line change
Expand Up @@ -484,6 +484,8 @@ UPGRADE NOTES - PHP 5.3
must be activated manually with the "extension = php_com_dotnet.dll" directive
in php.ini.

- Apache 2.4 handler is supported as of PHP 5.3.20

=====================
11.1 New in PHP 5.3.4
=====================
Expand Down
3 changes: 3 additions & 0 deletions tests/security/open_basedir_001.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ openbase_dir runtime tightning
if (substr(PHP_OS, 0, 3) == 'WIN') {
die('skip.. only for unix');
}
if (!is_dir("/usr/local/bin")) {
die('skip.. no /usr/local/bin on this machine');
}
--INI--
open_basedir=/usr/local
--FILE--
Expand Down

0 comments on commit 16f9f46

Please sign in to comment.