Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | MFH: | Andrey Hristov | 2008-11-18 | 18 | -15/+1253 |
| | | | | | | Asynchronous queries for mysqli, when mysqlnd is enabled. Includes 4 tests for mysqli_poll | ||||
* | Reflection tests: checked on PHP 5.2.6, 5.3 and 6.0 (Windows, Linux and ↵ | Ant Phillips | 2008-11-18 | 56 | -0/+4914 |
| | | | | Linux 64 bit). | ||||
* | - MFH: declaration has to be first... | Pierre Joye | 2008-11-18 | 1 | -1/+1 |
| | |||||
* | - MFB: fix title | Pierre Joye | 2008-11-18 | 1 | -1/+1 |
| | |||||
* | - #41033, enable signing with DSA keys | Pierre Joye | 2008-11-18 | 4 | -1/+56 |
| | |||||
* | MFH: | Felipe Pena | 2008-11-17 | 1 | -105/+31 |
| | | | | | | - Changed 'strlen' to use ZEND_FUNCTION(strlen) - Removed duplicated arginfo structs | ||||
* | Missed test for previous commit | Scott MacVicar | 2008-11-17 | 1 | -0/+22 |
| | |||||
* | MFH Add openssl_random_pseudo_bytes() in order to expose access to a PRG, ↵ | Scott MacVicar | 2008-11-17 | 1 | -0/+53 |
| | | | | | | | | | | this wraps around whatever the OS provides. - OpenBSD uses arc4random() - Windows uses the Windows Crypto API - FreeBSD, Linux, etc use /dev/random or /dev/urandom if available [DOC] | ||||
* | MFH Fix #46033 - Segfault when instantiating SQLite3stmt and SQLite3Result ↵ | Scott MacVicar | 2008-11-17 | 1 | -3/+70 |
| | | | | directly. | ||||
* | Improve use syntax | Stanislav Malyshev | 2008-11-17 | 2 | -2/+35 |
| | | | | | [DOC] use \foo\bar is the same as use foo\bar | ||||
* | MFH Sync libsqlite to 3.6.5 | Scott MacVicar | 2008-11-17 | 3 | -4773/+6226 |
| | |||||
* | MFH: Feature request #46595. Use cc as default compiler and fallback to gcc. | David Soria Parra | 2008-11-17 | 2 | -1/+2 |
| | |||||
* | Commit tests for ext/reflection | Ant Phillips | 2008-11-17 | 8 | -0/+362 |
| | |||||
* | - MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macro | Felipe Pena | 2008-11-17 | 116 | -2439/+4 |
| | |||||
* | - MFB: skip if pcntl is not present | Pierre Joye | 2008-11-16 | 1 | -1/+2 |
| | |||||
* | - entry for #46127 | Pierre Joye | 2008-11-16 | 1 | -0/+2 |
| | |||||
* | - MFH: #46127, php_openssl_tcp_sockop_accept forgets to set context on ↵ | Pierre Joye | 2008-11-16 | 3 | -0/+91 |
| | | | | accepted stream | ||||
* | Fixed memory leak inside readline_callback_handler_install() function | Ilia Alshanetsky | 2008-11-16 | 1 | -2/+3 |
| | |||||
* | - MFH: Fixed strlen function entry (missing arginfo struct size, thanks Philip!) | Felipe Pena | 2008-11-16 | 1 | -1/+1 |
| | |||||
* | MFH: Added stream_cast() and stream_set_options() to user-space stream | Arnaud Le Blanc | 2008-11-15 | 4 | -2/+427 |
| | | | | | | | | wrappers, allowing stream_select(), stream_set_blocking(), stream_set_timeout() and stream_set_write_buffer() to work with user-space stream wrappers. Will document. | ||||
* | MFH: Interfaces extend other interfaces, not implement | Hannes Magnusson | 2008-11-14 | 1 | -1/+5 |
| | |||||
* | New testcases for gmdate function | Sanjay Mantoor | 2008-11-14 | 16 | -0/+1175 |
| | |||||
* | MFH: Fix proto line | Arnaud Le Blanc | 2008-11-14 | 1 | -1/+1 |
| | |||||
* | MFH: Document the xmlrpc_errors option | Hannes Magnusson | 2008-11-13 | 2 | -8/+10 |
| | |||||
* | [DOC] Add option for error_log to send directly to SAPI logger | Stanislav Malyshev | 2008-11-13 | 1 | -1/+8 |
| | |||||
* | Fixed a bug inside dba_replace() that could cause file truncation with | Ilia Alshanetsky | 2008-11-13 | 1 | -1/+3 |
| | | | | | invalid keys | ||||
* | - MFH: Better fix | Felipe Pena | 2008-11-13 | 2 | -15/+9 |
| | |||||
* | - MFH: declaration goes first... | Pierre Joye | 2008-11-13 | 2 | -4/+4 |
| | |||||
* | Updated header_handler in apache2filter and apache_hooks | Arnaud Le Blanc | 2008-11-13 | 2 | -44/+78 |
| | |||||
* | - MFH: Fixed invalid reads | Felipe Pena | 2008-11-13 | 2 | -3/+3 |
| | |||||
* | Added header_remove() (chsc at peytz dotdk, Arnaud) | Arnaud Le Blanc | 2008-11-13 | 10 | -69/+299 |
| | | | | | | | | | | | | | | | | | | | | | | | | | [DOC] proto void header_remove([string header_name]) Removes an HTTP header previously set using header() The header_name parameter is optionnal, all headers are removed if it is not set [SAPIs] The header_handler callback in sapi_module_struct has been changed, it now take a new argument. When it is set to SAPI_HEADER_DELETE, sapi_header->header is the name of an header, header_handler has to delete it. When it is set to SAPI_HEADER_DELETE_ALL, header_handler has to delete all headers. When sapi_header_op_enum is SAPI_HEADER_ADD or _REPLACE, sapi_header->header is in the form "Name: value", header_handler has to add or replace the given header. In all cases, header_handler must not free sapi_header or sapi_header->header. SAPI_HEADER_ADD must be returned if the header has been added or replaced, or 0 in other cases. | ||||
* | MFH: Added stream_context_get_params() | Arnaud Le Blanc | 2008-11-13 | 5 | -0/+157 |
| | |||||
* | - Fixed tests | Felipe Pena | 2008-11-13 | 2 | -4/+4 |
| | |||||
* | - MFH: Fixed macro redefinition warning | Felipe Pena | 2008-11-13 | 1 | -0/+1 |
| | |||||
* | - MFH: Fixed a macro redefinition on BSD for different purpose | Felipe Pena | 2008-11-12 | 1 | -0/+1 |
| | |||||
* | - MFH: Removed unused variables | Felipe Pena | 2008-11-12 | 1 | -3/+0 |
| | |||||
* | - Fix test | Felipe Pena | 2008-11-12 | 1 | -1/+1 |
| | |||||
* | - Silent valgrind | Felipe Pena | 2008-11-12 | 1 | -1/+1 |
| | |||||
* | - MFH: | Pierre Joye | 2008-11-12 | 3 | -12/+44 |
| | | | | | | - #14962, makes extractTo 2nd argument really optional - replace ZEND_ENGINE_2_1 by PHP_ZIP_USE_OO | ||||
* | make sure the slash is actually thre before reading past it | Antony Dovgal | 2008-11-12 | 1 | -3/+3 |
| | |||||
* | fix potential crash in zend_do_assign due to opcodes realloc | Stanislav Malyshev | 2008-11-12 | 1 | -2/+9 |
| | |||||
* | fix crash - using old opline after realloc | Stanislav Malyshev | 2008-11-12 | 1 | -3/+6 |
| | |||||
* | Removed unused vars | Ilia Alshanetsky | 2008-11-12 | 1 | -2/+0 |
| | |||||
* | fix memleak | Stanislav Malyshev | 2008-11-11 | 2 | -262/+258 |
| | |||||
* | Namespace resolution streamlining patch | Stanislav Malyshev | 2008-11-11 | 30 | -689/+443 |
| | | | | | [DOC] new resolution rules should be documented soon | ||||
* | some new tests | Stanislav Malyshev | 2008-11-11 | 10 | -0/+135 |
| | |||||
* | - MFH: New parameter parsing API | Felipe Pena | 2008-11-11 | 1 | -75/+50 |
| | |||||
* | - New tests | Felipe Pena | 2008-11-11 | 4 | -0/+122 |
| | |||||
* | - Fixed bug #46546 (Segmentation fault when using declare statement with ↵ | Felipe Pena | 2008-11-11 | 2 | -1/+18 |
| | | | | | | | non-string value) # This issue only happens in this branch | ||||
* | MFH: | Felipe Pena | 2008-11-11 | 3 | -4/+42 |
| | | | | | | - Added ZEND_FETCH_RESOURCE2_NO_RETURN() (a version of ZEND_FETCH_RESOURCE2 but without the ZEND_VERIFY_RESOURCE() which contains RETURN_FALSE) - Fixed bug #46543 (ibase_trans() memory leaks when using wrong parameters) |