Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
0d534d7
Add ldap_escape()
DaveRandom Sep 17, 2013
2ddefbd
Added support for TLSv1.1 and TLSv1.2
rdlowrey Oct 8, 2013
c092d28
Fix compiler warnings in openssl.c
bukka Oct 13, 2013
51b809e
Assume the free space is correct on Travis CI.
datibbaw Oct 9, 2013
bd666e2
Merge branch 'PHP-5.5'
m6w6 Oct 17, 2013
4628c9b
Merge branch 'PHP-5.5' of https://git.php.net/repository/php-src into…
cjbj Oct 17, 2013
134caeb
Merge branch 'master' of https://git.php.net/repository/php-src
cjbj Oct 17, 2013
2aaa3d5
Added support for TLSv1.1 and TLSv1.2
rdlowrey Oct 8, 2013
5a7ca69
Merge branch 'PHP-5.5'
m6w6 Oct 17, 2013
ad0a85b
fix ws
m6w6 Oct 17, 2013
62be976
TLS news
m6w6 Oct 17, 2013
e6481e2
Merge branch 'PHP-5.5'
m6w6 Oct 17, 2013
8aaecef
Revert "Added support for TLSv1.1 and TLSv1.2"
m6w6 Oct 17, 2013
d89d46d
Revert "TLS news"
m6w6 Oct 17, 2013
dd3a4c3
Merge branch 'PHP-5.5'
m6w6 Oct 17, 2013
3f2fba4
Merge branch 'updated_tls_support' of https://github.com/rdlowrey/php…
m6w6 Oct 17, 2013
b95f9fa
previous revert killed that file
m6w6 Oct 17, 2013
66868c8
TLS news
m6w6 Oct 17, 2013
a4b4477
Merge branch 'PHP-5.5' of https://git.php.net/repository/php-src into…
cjbj Oct 17, 2013
cefbf93
Merge branch 'master' of https://git.php.net/repository/php-src
cjbj Oct 17, 2013
c59d790
Prepare for OCI8 2.0.5 release
cjbj Oct 17, 2013
5e368b7
Add missing test to package.xml
cjbj Oct 17, 2013
6b90f23
fixed typo and few grammar mistakes
beyonddream Oct 18, 2013
4417421
Retruning SUCCESS/FAILURE instead of int
laruence Oct 18, 2013
db61685
Merge branch 'PHP-5.5' of git.php.net:php-src into PHP-5.5
laruence Oct 18, 2013
065bbeb
Merge branch 'PHP-5.5'
laruence Oct 18, 2013
d345ad2
Merge branch 'zend-documentation-fix' of https://github.com/AskDrCatc…
laruence Oct 18, 2013
f711c12
Merge branch 'ldap_escape-dev' of https://github.com/DaveRandom/php-src
m6w6 Oct 18, 2013
a03b132
fix compiler warnings and type usage
m6w6 Oct 18, 2013
c86862c
Merge branch 'openssl_compile_warning_fix' of https://github.com/bukk…
m6w6 Oct 18, 2013
e17de5e
Merge branch 'bug50333' of github.com:weltling/php-src into bug50333
weltling Oct 29, 2013
fc707a2
back to do_alloca(), reverted the wrong replacement
weltling Oct 30, 2013
abb962d
compact the code to preserve the error info after state freeing
weltling Oct 30, 2013
4d430ec
simplify the state free macros
weltling Oct 31, 2013
f1c2f8f
removed unnecessary call
weltling Oct 31, 2013
39e7dcc
back to do_alloca()
weltling Oct 31, 2013
6aedfac
virtual_cwd_activate() should be called only in one place
weltling Oct 31, 2013
9df78bf
reverted the previous commit, both calls are needed in TS mode
weltling Nov 1, 2013
699f07b
limit virtual_cwd_activate() duplicated call to ZTS only
weltling Nov 2, 2013
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ PHP NEWS
- Openssl:
. Added crypto_method option for the ssl stream context. (Martin Jansen)
. Added certificate fingerprint support. (Tjerk Meesters)
. Added explicit TLSv1.1 and TLSv1.2 stream transports. (Daniel Lowrey)
. Fixed bug #65729 (CN_match gives false positive). (Tjerk Meesters)

- PDO_pgsql:
Expand Down
6 changes: 3 additions & 3 deletions Zend/RFCs/003.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ Modified: 2001-09-17
1. Background/Need
==================

Many internal function of PHP will reject parameters because of their
Many internal functions of PHP will reject parameters because of their
type (the array and variable function come to mind). For userland
this is not an easy task as there is no uniform way to do it. An
addition to the engine for requiring loose types would allow
delevopers to know that the data passed to their functions is of the
developers to know that the data passed to their functions are of the
correct type and reduce the need for duplicating the same code in
every function to check for the type of data.

Expand Down Expand Up @@ -57,7 +57,7 @@ function foo (array $var){
===========

Mis-matches in type should be reported as fatal errors and should halt
the execution of a script as that function can not be run and code
the execution of a script as that function cannot be run and code
following could not reliably run.


Expand Down
2 changes: 2 additions & 0 deletions Zend/zend.c
Original file line number Diff line number Diff line change
Expand Up @@ -921,7 +921,9 @@ ZEND_API char *get_zend_version(void) /* {{{ */

void zend_activate(TSRMLS_D) /* {{{ */
{
#ifdef ZTS
virtual_cwd_activate(TSRMLS_C);
#endif
gc_reset(TSRMLS_C);
init_compiler(TSRMLS_C);
init_executor(TSRMLS_C);
Expand Down
Loading