Edin Kadribasic
18eb480dd2
MFH: Added pg_field_table() as per req: #36750
2006-05-07 00:28:32 +00:00
Ilia Alshanetsky
7e8409de8c
Fixed bug #37244 (Added strict flag to base64_decode() that enforces
...
RFC3548 compliance).
2006-05-06 22:47:14 +00:00
SVN Migration
608baa409a
This commit was manufactured by cvs2svn to create branch 'PHP_5_2'.
2006-05-05 15:49:42 +00:00
Antony Dovgal
25de341259
plug a leak
2006-05-04 22:48:29 +00:00
Antony Dovgal
ef0d7e3f58
MFH: several minor fixes: nuke compile warnings etc.
2006-05-04 19:00:11 +00:00
Sara Golemon
7e6beb9f28
Note addition of new class constants
2006-05-04 00:21:51 +00:00
Sara Golemon
91999f1175
mfh(r-1.129) Expose PARAM_EVT_* constants
2006-05-03 21:58:38 +00:00
Ilia Alshanetsky
fd2726641b
Revert previous optimization if preparation for 5.1.4
2006-05-03 13:32:10 +00:00
Pierre Joye
dbf2a5c65c
- document the --with-pdo-sqlite[=dir]
2006-05-03 11:12:54 +00:00
Rob Richards
f57c75112d
Fix bug #37277 (cloning Dom Documents or Nodes does not work)
...
Proper fix for bug #36859
add test
2006-05-03 08:43:04 +00:00
Dmitry Stogov
a34755e9cf
MFH
2006-05-03 06:36:02 +00:00
Ilia Alshanetsky
e95addcbfa
Attempt to increase smart_str performance through the use of larger
...
default buffers. Biased micro benchmarks show it makes sense :P
2006-05-02 13:52:24 +00:00
Wez Furlong
30f98ae77b
set min pdo dep to 1.0.3, which will be the new pecl release
2006-05-02 02:43:11 +00:00
Wez Furlong
7614368f8a
prep for pecl release
2006-05-02 02:32:40 +00:00
Wez Furlong
c1555236c9
tweak for better compatibility when building as SCE.
...
(library order is important)
2006-05-02 00:59:22 +00:00
Marcus Boerger
6f1a0f67ff
- Make SplTempFileObject work in 5.1
2006-05-01 16:02:07 +00:00
Wez Furlong
8f87235107
Add two new context options for ssl:
...
"capture_peer_cert" and "capture_peer_cert_chain"
If true, the peer certificate and peer certificate chain respectively will be
captured and made available in the ssl context variables "peer_certificate" and
"peer_certificate_chain" respectively. The certificates are exposed as x509
certificate resources and can be inspected using the existing openssl extension
functions.
This allows applications to perform extended validation.
2006-04-30 23:43:46 +00:00
Wez Furlong
ea2037a2d3
fix PECL #6544
2006-04-30 01:42:53 +00:00
Wez Furlong
07e11dcc4d
Fix #36632
2006-04-30 01:27:33 +00:00
Wez Furlong
aa5dbc8c92
Fix #35552
2006-04-30 00:52:28 +00:00
Moriyoshi Koizumi
522ce80071
- MFH: fix bug #37176 (iconv_strpos() fails to find a string)
2006-04-27 00:50:54 +00:00
Antony Dovgal
d18cd00657
fix tests
2006-04-25 22:09:46 +00:00
Antony Dovgal
0a38d6bd8c
remove nonexistent tag
2006-04-25 12:49:59 +00:00
Antony Dovgal
896a5216d7
fix possible substr_compare() crash
...
add new tests
2006-04-25 12:48:42 +00:00
Antony Dovgal
90b3dadc4e
fix #37191 (chmod takes off sticky bit when safe_mode is On)
2006-04-25 08:41:02 +00:00
Michael Wallner
1c02dff74a
- Fixed bug #37192 (cc fails on hash_adler.c:32)
2006-04-25 08:34:25 +00:00
Ilia Alshanetsky
a1bbdf831c
Fixed bug #37162 (wddx does not build as a shared extension).
...
#Patch By: jdolecek at NetBSD dot org
2006-04-23 16:02:05 +00:00
Antony Dovgal
b81e20f8e8
bah.. no UEXPECT in this branch..
2006-04-22 23:47:25 +00:00
Antony Dovgal
658b22ad6e
add test for #37158
2006-04-22 23:46:42 +00:00
Antony Dovgal
ea53739d30
MFB: don't segfault if an exception has been thrown from the fetch handler
2006-04-22 19:10:53 +00:00
Wez Furlong
64de59d9a7
avoid unterminated loop when closing the statement.
2006-04-22 16:35:18 +00:00
Michael Wallner
f7a6327728
- Fix reading stream filters never notified about EOF
2006-04-20 17:43:18 +00:00
Ilia Alshanetsky
09dec62672
Fixed tokenizer tests
2006-04-20 01:06:58 +00:00
Nuno Lopes
227ca46fb7
fix build with newer libtidy versions on windows
...
# first commit on php-src. whatch out :)
2006-04-19 21:47:20 +00:00
John Coggeshall
974dc0f5b4
Fixing static builds on windoze machines for our current lib version
2006-04-19 20:57:30 +00:00
Dmitry Stogov
68906dbe62
Cleaned up Andrei's patch for caching WSDL in process memory, added TTL and LIMIT for memory cache.
...
Memory cache is disblead by fefault because it is experemental and isn't tested enough. It can be enabled whit configuartion directive "soap.wsdl_cache = WSDL_CACHE_MEMORY" or "soap.wsdl_cache = WSDL_CACHE_BOTH" or derectly in SoapClent/SoapServer constructor: $ws = new SoapClient($wsdl, array("cache_wsdl"=>WSDL_CACHE_BOTH))
Disk and memory caches use the same TTL value - "soap.wsdl_cache_ttl".
Configuration directive "soap.wsdl_cache_limit" restricts the number of cached wsdl files in memory. Adding new files into full memory cache will delete oldest files from it.
Note that, each PHP process or thread uses it's own memory cache.
2006-04-19 10:48:54 +00:00
Antony Dovgal
9ea8d8dbf6
MFH: fix typo
2006-04-19 08:43:29 +00:00
Ilia Alshanetsky
1c0d8a536a
Fixed bug #29476 (sqlite_fetch_column_types() locks the database forever).
2006-04-18 14:30:16 +00:00
Dmitry Stogov
349bcd7443
Fixed bug #37083 (Frequent crashs in SOAP extension with new WSDL caching code in multithread WS). (Andrei, Dmitry)
2006-04-18 13:07:59 +00:00
Ilia Alshanetsky
101d925baa
Commit the actual fix
2006-04-18 00:31:45 +00:00
foobar
92da3229d4
MFH: Fixed bug #37103 (libmbfl headers not installed)
2006-04-17 22:13:56 +00:00
Sara Golemon
3ef88178e8
MFH(r-1.55) Fix 'soft line break' handling in convert.quoted-printable-decode
2006-04-17 19:26:04 +00:00
Andrei Zmievski
cfaf6406d7
Some encodings were assumed to be default and, thus, were not made
...
persistent.
2006-04-17 16:08:08 +00:00
Dmitry Stogov
7330c32329
Fixed several bugs in new "caching WSDL in memory" code
...
Re-enabled disk cache
2006-04-17 13:16:02 +00:00
Ilia Alshanetsky
74672b86b4
Fixed a typo in the previous patch.
...
# Thanks Tony
2006-04-16 17:40:33 +00:00
Ilia Alshanetsky
79d8f014da
Fixed bug #37045 (Fixed check for special chars for http redirects).
2006-04-16 16:54:49 +00:00
Antony Dovgal
522a5e128f
ok, let's make this test to work on all systems
...
currently it fails at least on Linux PPC and Solaris, probably because of different strncmp/strncasecmp implementations.
2006-04-14 20:30:11 +00:00
Marcus Boerger
011266f7e1
- MFH Fix properties access to children() result
2006-04-14 15:19:45 +00:00
Antony Dovgal
7c42ddb8e0
fix #37077 (stream_socket_server() leaks when the port is not allowed)
2006-04-14 10:00:55 +00:00
Dmitry Stogov
874a22101f
Fixed calling header functions through __call()
2006-04-14 09:11:29 +00:00