| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
| |
The DELREF part is a possible fix for bug #78278, the ADDREF part
is a drive-by fix.
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Allows overriding the HTTP header using the HTTP context:
$client = new SoapClient('http://url.wsdl&v=latest', [
'stream_context' => stream_context_create([
'http' => [
'content_type' => 'foobarX',
],
]),
]);
This is a backport of c55af3c65ac116bbd935bd3d695869d88056c49c
to the PHP 7.2 branch.
|
| |
|
|
|
| |
These EOL types are part of different environments and not part of the
tests themselves.
|
| |
|
|
|
| |
Make sure that we proper distinguish between empty string key and
no key during SDL serialization.
|
| |\
| |
| |
| |
| | |
* PHP-7.1:
Fix #77141: Signedness issue in SOAP when precision=-1
|
| | |
| |
| |
| |
| | |
According to php_gcvt(), we assume at most 17 fractional digits for
negative precision.
|
| |\ \
| |/
| |
| |
| | |
* PHP-7.1:
Fix #76348: WSDL_CACHE_MEMORY causes Segmentation fault
|
| | |
| |
| |
| |
| | |
“Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end.”
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This patch adds missing newlines, trims multiple redundant final
newlines into a single one, and trims redundant leading newlines in all
*.phpt sections.
According to POSIX, a line is a sequence of zero or more non-' <newline>'
characters plus a terminating '<newline>' character. [1] Files should
normally have at least one final newline character.
C89 [2] and later standards [3] mention a final newline:
"A source file that is not empty shall end in a new-line character,
which shall not be immediately preceded by a backslash character."
Although it is not mandatory for all files to have a final newline
fixed, a more consistent and homogeneous approach brings less of commit
differences issues and a better development experience in certain text
editors and IDEs.
[1] http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_206
[2] https://port70.net/~nsz/c/c89/c89-draft.html#2.1.1.2
[3] https://port70.net/~nsz/c/c99/n1256.html#5.1.1.2
|
| | | |
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This patch adds missing newlines, trims multiple redundant final
newlines into a single one, and trims redundant leading newlines.
According to POSIX, a line is a sequence of zero or more non-' <newline>'
characters plus a terminating '<newline>' character. [1] Files should
normally have at least one final newline character.
C89 [2] and later standards [3] mention a final newline:
"A source file that is not empty shall end in a new-line character,
which shall not be immediately preceded by a backslash character."
Although it is not mandatory for all files to have a final newline
fixed, a more consistent and homogeneous approach brings less of commit
differences issues and a better development experience in certain text
editors and IDEs.
[1] http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_206
[2] https://port70.net/~nsz/c/c89/c89-draft.html#2.1.1.2
[3] https://port70.net/~nsz/c/c99/n1256.html#5.1.1.2
|
| | | |
|
| | |
| |
| |
| |
| | |
SOAP: Stop overwriting the node name when creating an XML node
for an object reference.
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This patch adds missing newlines, trims multiple redundant final
newlines into a single one, and trims redundant leading newlines in all
*.phpt sections.
According to POSIX, a line is a sequence of zero or more non-' <newline>'
characters plus a terminating '<newline>' character. [1] Files should
normally have at least one final newline character.
C89 [2] and later standards [3] mention a final newline:
"A source file that is not empty shall end in a new-line character,
which shall not be immediately preceded by a backslash character."
Although it is not mandatory for all files to have a final newline
fixed, a more consistent and homogeneous approach brings less of commit
differences issues and a better development experience in certain text
editors and IDEs.
[1] http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_206
[2] https://port70.net/~nsz/c/c89/c89-draft.html#2.1.1.2
[3] https://port70.net/~nsz/c/c99/n1256.html#5.1.1.2
|
| | | |
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This patch adds missing newlines, trims multiple redundant final
newlines into a single one, and trims redundant leading newlines.
According to POSIX, a line is a sequence of zero or more non-' <newline>'
characters plus a terminating '<newline>' character. [1] Files should
normally have at least one final newline character.
C89 [2] and later standards [3] mention a final newline:
"A source file that is not empty shall end in a new-line character,
which shall not be immediately preceded by a backslash character."
Although it is not mandatory for all files to have a final newline
fixed, a more consistent and homogeneous approach brings less of commit
differences issues and a better development experience in certain text
editors and IDEs.
[1] http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_206
[2] https://port70.net/~nsz/c/c89/c89-draft.html#2.1.1.2
[3] https://port70.net/~nsz/c/c99/n1256.html#5.1.1.2
|
| | | |
|
| |\ \
| |/
| |
| |
| | |
* PHP-7.1:
Reduce var scope
|
| | | |
|
| |\ \
| |/
| |
| |
| | |
* PHP-7.1:
Fix stack use after scope
|
| | | |
|
| |\ \
| |/
| |
| |
| | |
* PHP-7.1:
Fixes bug #75871 Use pkg-config for libxml2 if available
|
| | | |
|
| |\ \
| |/
| |
| |
| | |
* PHP-7.1:
Happy new year (Update copyright to 2018)
|
| | | |
|
| | | |
|
| | | |
|
| |\ \
| |/ |
|
| | |
| |
| |
| |
| | |
The string keys were not duplicated into persistent memory in this
case.
|
| |\ \
| |/
| |
| |
| | |
* PHP-7.1:
Fixed reference-counting
|
| | | |
|
| |\ \
| |/ |
|
| | |
| |
| |
| |
| | |
Don't generate an E_ERROR if we've already thrown an exception.
This interacts badly with error_get_last() checks.
|
| |\ \
| |/ |
|
| | |\ |
|
| | | |
| | |
| | |
| | | |
Switch to example.org. Also mark it as an online test.
|
| |\ \ \
| |/ /
| | |
| | |
| | | |
* PHP-7.1:
Fix bug #75464 Wrong reflection on SoapClient::__setSoapHeaders
|
| | |\ \
| | |/
| | |
| | |
| | | |
* PHP-7.0:
Fix bug #75464 Wrong reflection on SoapClient::__setSoapHeaders
|
| | | | |
|
| | | |
| | |
| | |
| | |
| | |
| | | |
Resetting the IAP on a shared array violates COW. I'm replacing this
with code to look up indexes 0 and 1, even though this is not
strictly the same.
|
| | | | |
|
| | | | |
|
| | | |
| | |
| | |
| | | |
And directly use zend_hash_str_find_deref() instead.
|
| | | |
| | |
| | |
| | |
| | | |
Previously this was defined in zend.c and php.h and also handled
in another way in soap.c.
|
| | | | |
|
| |\ \ \
| |/ /
| | |
| | |
| | | |
* PHP-7.1:
Fixed bug #74679 (Incorrect conversion array with WSDL_CACHE_MEMORY)
|
| | |\ \
| | |/
| | |
| | |
| | | |
* PHP-7.0:
Fixed bug #74679 (Incorrect conversion array with WSDL_CACHE_MEMORY)
|
| | | | |
|
| |\ \ \
| |/ /
| | |
| | |
| | | |
* PHP-7.1:
too many dashes
|