Antony Dovgal
fa6d24b330
add new test
2006-08-04 15:01:29 +00:00
Rob Richards
9bd82acc33
fix compile
2006-08-04 13:40:12 +00:00
Antony Dovgal
7d109bc627
fix #38322 (reading past array in sscanf() leads to arbitary code execution)
2006-08-04 11:49:18 +00:00
Antony Dovgal
ea4f125a87
comparing libxml documents and nodes is not yet possible and we can't fix it
...
fix test instead
2006-08-04 08:11:39 +00:00
Dmitry Stogov
fd22843513
Unicode support
2006-08-04 07:38:21 +00:00
Andrei Zmievski
49f1d3a779
Upgraded basename() to work on IS_UNICODE strings as well.
2006-08-03 23:45:27 +00:00
Andrei Zmievski
768a9227ed
- Adjusted php_u_strtoupper/php_u_strtolower/php_u_strtotitle API to be
...
more sane.
- Upgrade strtoupper(), strtolower(), strtotitle() to use params API.
2006-08-03 23:09:29 +00:00
Andrei Zmievski
72adc1b397
Update similar_text() to use params API.
2006-08-03 21:46:16 +00:00
Antony Dovgal
b9404ba522
fix leak in php_sapi_filter()
2006-08-03 19:35:14 +00:00
Dmitry Stogov
31c0eb37f6
Unicode support.
2006-08-03 16:13:06 +00:00
Ilia Alshanetsky
886113e5f9
MFB: Fixed bug #38303 (spl_autoload_register() supress all errors
...
silently).
2006-08-03 14:53:51 +00:00
Antony Dovgal
e42e830a1e
fix test
2006-08-02 23:29:09 +00:00
Antony Dovgal
e226252ff6
fix build
2006-08-02 22:02:12 +00:00
Andrei Zmievski
f6f8792be4
A few fixes noted during analysis.
2006-08-02 21:53:43 +00:00
Andrei Zmievski
09811323a9
bin2hex() should accept only binary strings.
2006-08-02 20:38:39 +00:00
Ilia Alshanetsky
45910673a8
MFB: Fixed bug #38213 , #37611 , #37571 (wddx encoding fails to handle certain
...
characters).
2006-08-02 15:45:29 +00:00
Ilia Alshanetsky
9829b0c1ff
MFB: Expose the xml_utf8_encode function.
2006-08-02 15:22:56 +00:00
Antony Dovgal
7205725d75
init variable, eliminate compile warning
2006-08-02 10:04:02 +00:00
Antony Dovgal
9b63740847
fix #38289 (segfault in session_decode() when _SESSION is NULL)
2006-08-02 09:15:13 +00:00
Dmitry Stogov
be56f79c6f
zts fix
2006-08-02 07:54:41 +00:00
Andrei Zmievski
263d329acd
Fix leaks.
2006-08-02 02:11:56 +00:00
Antony Dovgal
eeede0fa1e
implement my own FR #36995
...
nuke unused variable
2006-08-01 22:41:33 +00:00
Andrei Zmievski
b67e1d9f92
Add SORT_LOCALE_STRING support to array_multisort() and mark it with U.
2006-08-01 22:28:26 +00:00
Andrei Zmievski
7b0fc1bb1c
Whew. Fix up extract to params API, Unicode support, and simplify it as
...
well.
2006-08-01 21:50:44 +00:00
Michael Wallner
f4521581b7
- update test
2006-08-01 16:49:08 +00:00
Michael Wallner
f1ff6fb935
- use library error message on time string parse failure
2006-08-01 16:45:24 +00:00
Ilia Alshanetsky
329a7b6301
Fixed build (added missing functions)
2006-08-01 16:37:11 +00:00
Ilia Alshanetsky
378b1181c2
MFB: Fixed bug #38168 (Crash in pdo_pgsql on missing bound parameters).
2006-08-01 16:32:30 +00:00
Dmitry Stogov
e0b7e95935
Unicode support
2006-08-01 16:10:25 +00:00
Michael Wallner
c5db30db85
- fix leaks on multiple calls to DateTime::__construct()
...
- throw exception on unparseable time strings in DateTime::__construct()
# I guess I'm done now
2006-08-01 15:54:45 +00:00
Ilia Alshanetsky
06bc5e1b46
MFB: Fixed memory leak on unused bound name parameters.
2006-08-01 15:06:12 +00:00
Michael Wallner
6582daf259
- OO fixes:
...
. no is_ref for objects in PHP5+
. initialize objects when created with the `new` operator
. check for proper initialization in child classes
- fix typo: transistion -> transition
- add test
2006-08-01 13:27:41 +00:00
Antony Dovgal
54b14feba5
fix #38269 (fopen wrapper doesn't fail on invalid hostname with curlwrappers enabled)
2006-08-01 13:26:56 +00:00
Antony Dovgal
0c2449923c
improve error message on Win32
2006-08-01 12:08:10 +00:00
Antony Dovgal
873b6d87c6
fix #38278 (session_cache_expire()'s value does not match phpinfo's session.cache_expire)
2006-08-01 08:31:37 +00:00
Ilia Alshanetsky
0af6ef771e
MFB: Fixed bug #37445 (Fixed crash in pdo_mysql resulting from premature
...
object destruction).
2006-07-31 20:19:18 +00:00
Dmitry Stogov
ac7333ce60
Reimplemented SoapServer and SoapClient classes using ZE2 object API.
...
All internal properties are hidden now.
2006-07-31 16:02:04 +00:00
Christian Stocker
304816bf78
return false instead of null, if it's an invalid document
...
(MFB)
2006-07-31 13:07:44 +00:00
Christian Stocker
b59ad4f938
return true, if xsl import did work
2006-07-31 12:51:08 +00:00
Antony Dovgal
06aa83600e
fix #37581 (oci_bind_array_by_name clobbers input array when using SQLT_AFC, AVC)
2006-07-31 10:28:46 +00:00
Ilia Alshanetsky
270a5b8bb1
MFB: Fixed compiler warning.
2006-07-31 03:41:43 +00:00
Pierre Joye
7cd4c92c1a
- MFB: #36732 , add req_extensions support to openssl_csr_new and _sign
...
(ben at psc dot edu)
- MFB: fix leaks in openssl_csr_new and sig
2006-07-31 00:36:10 +00:00
Antony Dovgal
996f79343c
update changelog
2006-07-30 20:53:10 +00:00
Antony Dovgal
5cf81310c7
fix #38173 (Freeing nested cursors causes OCI8 to segfault)
2006-07-30 20:50:53 +00:00
Pierre Joye
6dc7a18d7c
- #28382 , add support for x509 extensions
2006-07-30 17:02:28 +00:00
Pierre Joye
30901dc4cd
- MFB: #38261 , openssl_x509_parse leaks with invalid certs
2006-07-30 16:27:03 +00:00
Antony Dovgal
6636721261
improve checks and fix #38251
2006-07-30 11:54:11 +00:00
Antony Dovgal
c3d64c7024
fix compile warnings ( #38257 )
2006-07-30 11:33:49 +00:00
Antony Dovgal
34cfab8e7c
MFB: bug #38253 (PDO produces segfault with default fetch mode)
...
add test
2006-07-30 11:20:41 +00:00
Pierre Joye
33cfa68757
- MFB: silent compiler warnins (signess)
2006-07-30 09:18:24 +00:00