summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* tag 5.3.2RC1php-5.3.2RC1Johannes Schlüter2009-12-220-0/+0
|
* PHP 5.3.2RC1Johannes Schlüter2009-12-223-4/+4
|
* release branch 5.3.2Johannes Schlüter2009-12-220-0/+0
|
* Wrap at 80 charsJohannes Schlüter2009-12-221-1/+2
|
* install mysqlnd headers to allow shared build of extensionsJohannes Schlüter2009-12-221-0/+1
|
* Fix double calls to free_contents if the connection cannot beAndrey Hristov2009-12-221-2/+3
| | | | | | opened. mysqlnd have no probs, external code should not have too. In any case, double call is not needed.
* move state setting to the right place, in mysqlnd_init, no moreAndrey Hristov2009-12-221-2/+2
| | | | | in mysqlnd::connect
* - fix build and warning (introduced by my last commit)Pierre Joye2009-12-221-6/+5
|
* - Fixed bug #50517 (EXTRA_LDFLAGS polluted by wrong entries)Jani Taskinen2009-12-221-1/+0
| | | | | | | # Until someone shows me use case for LDFLAGS, this is gone. # This was wrong place to import it anyway.
* - Fix bug #46478 (htmlentities() uses obsolete mapping table for characterMoriyoshi Koizumi2009-12-224-19/+842
| | | | | entity references)
* Fixed bug #45599 (strip_tags() truncates rest of string with invalid attribute).Ilia Alshanetsky2009-12-222-1/+3
|
* - Updated to version 2009.20 (2009t)Derick Rethans2009-12-211-1/+1
|
* Fixed bug #50540 (Crash within ldap_first_reference function)Sriram Natarajan2009-12-212-0/+4
|
* clean up normalizer codeStanislav Malyshev2009-12-212-13/+0
|
* Move this function to MYSQLND_NET as it works on theAndrey Hristov2009-12-215-54/+53
| | | | | php stream
* magic numbers to macrosAndrey Hristov2009-12-211-18/+20
|
* Move compression and decompression code to separate functionsAndrey Hristov2009-12-212-19/+49
| | | | | which can be overloaded on purpose.
* - Sync (and KEEP it synced!)Jani Taskinen2009-12-211-10/+48
|
* - Tune the fix for bug #50508 and make it work with MacOSX, bug #50541.Jani Taskinen2009-12-211-0/+3
|
* - New testsFelipe Pena2009-12-203-0/+84
|
* Fixed bug #50196 stream_copy_to_stream() produces warning when source is not ↵Stanislav Malyshev2009-12-191-0/+2
| | | | file
* fix bug #50196Stanislav Malyshev2009-12-191-0/+4
|
* Fixed bug #50394 (Reference argument converted to value in __call)Stanislav Malyshev2009-12-181-0/+1
|
* fix regression bug #50394: Reference argument converted to value in __callStanislav Malyshev2009-12-183-0/+43
|
* touchJani Taskinen2009-12-182-2/+2
|
* - Fixed bug #50508 (compile fails: Conflicting HEADER type declarations)Jani Taskinen2009-12-183-4/+2
| | | | | # NEVER ever include nameser_compat.h, it's included in various ways in different OSes by nameser.h if needed
* - [DOC] add INTERNALDATE to imap_append (will merge to trunk later)Pierre Joye2009-12-172-5/+31
|
* - These are 2 separate sections..Jani Taskinen2009-12-171-0/+1
|
* Test for what Andrey has found with 16M packetsUlf Wendel2009-12-171-0/+93
|
* refactoring : move more network related functions toAndrey Hristov2009-12-174-364/+365
| | | | | | | mysqlnd_net.c . Now communication is split on two levels: - logical (functions send and receive) - physical (functions network_read and network_write)
* During refactoring of the function mysqlnd_stream_write_w_header() it wasAndrey Hristov2009-12-172-92/+48
| | | | | | | | | | found that there is a bug in the way the data is sent, although a very rare one which will only affect very large queries which have length 16777214. The communication will hang. A way to test it is to execute the following: ./php -r '$c=mysqli_connect("127.0.0.1","root","root","test"); $q="insert into test.tblob values(\"".str_repeat("a",256*256*256-1-34)."\")"; $c->query($q);'
* - Fix NEWS for bug #50496Sriram Natarajan2009-12-161-2/+2
| | | | | # Update NEWS to keep resolved bugs in decreasing order (Christopher Jones)
* - Fixed bug #50496 (Use of <stdbool.h> is valid only in a c99 compilation ↵Sriram Natarajan2009-12-162-1/+8
| | | | environment.)
* call free_contents in every case, in case something is not freedAndrey Hristov2009-12-161-0/+1
| | | | | by the calling code
* Remove unneeded dereferencesAndrey Hristov2009-12-161-14/+6
| | | | | | (oops, committed the trunk changes from a wrong directory, which splitted this commit).
* move MYSQLND_NET code to a separate file.Andrey Hristov2009-12-167-285/+352
| | | | | | mysqlnd_wireprotocol is about the protocol not the transport layer
* - add a test case and update the skip clausePierre Joye2009-12-161-1/+6
|
* remove duplicated codeAndrey Hristov2009-12-151-8/+2
|
* Move code out of mysqlnd_conn::connect to mysqlnd_net::connect.Andrey Hristov2009-12-153-76/+96
| | | | | | Thus mysqlnd_conn::connect() does less of what it should not do - think about the transport level.
* remove C++ commentsAndrey Hristov2009-12-151-2/+2
|
* export this functionAndrey Hristov2009-12-152-2/+2
|
* refactor: move code that belongs to MYSQLND_NET out of MYSQLNDAndrey Hristov2009-12-153-98/+152
|
* Fixed bu #50392 (date_create_from_format() enforces 6 digits for 'u' format ↵Ilia Alshanetsky2009-12-154-7/+72
| | | | character)
* - Make $sbindir be usable in C code as well (like $bindir and co.)Jani Taskinen2009-12-152-0/+3
|
* - Allow using $sbindir as wellJani Taskinen2009-12-151-0/+1
|
* - Added SKIPIFFelipe Pena2009-12-151-0/+4
|
* - Fixed memory leak when E_STRICT message is gettedFelipe Pena2009-12-142-0/+130
|
* - Fix testJani Taskinen2009-12-141-3/+1
|
* - Fix testJani Taskinen2009-12-141-0/+1
|
* - Fixed bug #50469 (Fixed typo in imagepsencodefont error string).Pierrick Charron2009-12-141-1/+1
|