| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
| |
A char can be either signed or unsigned, and on PowerPC and ARM it is
unsigned. The following code will always be false on these architectures:
if (c == -1) goto error;
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
This fixes ext/openssl/tests/openssl_spki_export.phpt failing
with the no OPENSSL_Applink error. Applink is also an interesting
technique documented in the OpenSSL FAQ
https://www.openssl.org/support/faq.html#PROG2
which allows under circumstances using different OpenSSL binaries
than those a program was linked with.
|
|
|
|
| |
semantick changes).
|
|\
| |
| |
| |
| |
| | |
* PHP-5.6:
updated NEWS
Fixed #69655: php -S changes MKCALENDAR request method to MKCOL
|
| |
| |
| |
| |
| | |
The parsing of the request method in the CLI server has been faulty, so that
several unsupported methods have been recognized as other methods.
|
|\ \
| |/
| |
| |
| | |
* PHP-5.6:
added skip condition for powershell requirement of test
|
| | |
|
|\ \
| |/
| |
| |
| | |
* PHP-5.6:
Fix #64878: 304 responses return Content-Type header
|
| |
| |
| |
| |
| | |
According to RFC 7232 304 responses should not send a Content-Type header,
so the CLI server should comply.
|
|\ \
| | |
| | |
| | |
| | |
| | |
| | | |
# Conflicts:
# Zend/zend_language_scanner.c
# Zend/zend_language_scanner.l
# ext/simplexml/tests/SimpleXMLElement_xpath.phpt
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| |/ / |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This implements a reduced variant of #1226 with just the following
change:
-Fatal error: Uncaught exception 'EngineException' with message 'Call to private method foo::bar() from context ''' in %s:%d
+Fatal error: Uncaught EngineException: Call to private method foo::bar() from context '' in %s:%d
The '' wrapper around messages is very weird if the exception
message itself contains ''. Futhermore having the message wrapped
in '' doesn't work for the "and defined" suffix of
TypeExceptions.
|
| | | |
|
|/ / |
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
TypeException stays as-is for now because it uses messages that are
incompatible with the way exception messages are displayed.
closure_038.phpt and a few others now show that we're generating
too many exceptions for compound operations on undefined properties
-- this needs to be fixed in a followup.
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
The "SEARCH" HTTP request method is described in RFC5323 as part of
WebDAV, and allows a client to initiate a server side search.
|
| | |
|
| | |
|
| | |
|
|\ \
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
https://github.com/zxcvdavid/php-src
Conflicts:
Zend/zend_vm_gen.php
ext/pcre/php_pcre.c
|
| | | |
|
|/ / |
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
RFC: https://wiki.php.net/rfc/engine_exceptions_for_php7
Pending changes regarding naming of BaseException and whether it
should be an interface.
|
|\ \
| |/
| |
| |
| |
| |
| |
| | |
* PHP-5.6:
Fixed bug #67741 (auto_prepend_file messes up __LINE__)
Conflicts:
main/main.c
|
| |
| |
| |
| | |
This also fixes bug #54081
|
| |
| |
| |
| | |
which also comply with the current semantics for such macros
|
| |
| |
| |
| |
| | |
Now each HashTable is also zend_array, so it's refcounted and may be a subject for Copy on Write
zend_array_dup() was changed to allocate and return HashTable, instead of taking preallocated HashTable as argument.
|
| | |
|
| | |
|
|\ \
| |/
| |
| |
| |
| |
| | |
Conflicts:
ext/soap/soap.c
ext/standard/basic_functions.c
ext/zlib/zlib.c
|
| | |
|
| | |
|
| |
| |
| |
| | |
Previously it was possible that zend_read_property() returned pointer to zval allocated on stack.
|
| | |
|
| | |
|
| | |
|
| | |
|
|\ \
| |/
| |
| |
| |
| |
| |
| |
| | |
* PHP-5.6:
Handle NULL strings in sapi_cli_server_register_variable().
Allow CLI server test scripts to specify the name of the router file.
Conflicts:
sapi/cli/php_cli_server.c
|
| |\
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* PHP-5.5:
Handle NULL strings in sapi_cli_server_register_variable().
Allow CLI server test scripts to specify the name of the router file.
Conflicts:
sapi/cli/tests/php_cli_server.inc
|
| | |
| | |
| | |
| | | |
Fixes bug #68745 (Invalid HTTP requests make web server segfault).
|
| | |
| | |
| | |
| | |
| | | |
This is required to write tests that behave differently when an index.php isn't
present in the document root. (Such as the one I'm about to commit.)
|