summaryrefslogtreecommitdiff
path: root/ext
Commit message (Collapse)AuthorAgeFilesLines
* sed -i "s#1997-2009#1997-2010#g" **/*.re **/*.y **/*.lSebastian Bergmann2010-01-032-2/+2
|
* Add a test for tidyNode::__construct()Pierrick Charron2009-12-291-0/+12
|
* Set the tidyNode constructor privatePierrick Charron2009-12-282-1/+2
|
* - Updated to version 2009.21 (2009u)Derick Rethans2009-12-281-340/+374
|
* move network creation to the init hookAndrey Hristov2009-12-282-5/+21
|
* - Fixed ZTS buildFelipe Pena2009-12-271-0/+1
|
* Share the php_sockets.h headerMikko Koppanen2009-12-273-1/+4
| | | | | Share php_sockets_le_socket_name
* spprintf the dbnameMikko Koppanen2009-12-271-7/+7
| | | | | use VCWD_ACCESS instead of access
* Along with the valid char set, also add a length check to the Rasmus Lerdorf2009-12-261-2/+4
| | | | | | | | | session id here to avoid a lower-level error on the open() later on in case we exceed MAX_PATH. The lower level open() error includes the session dir path in it, so this is a very low-priority security fix. People should not be running production systems with display_errors turned on.
* Upgrade bundled libmagic to 5.03 (fixes CDF parsing related issues)Mikko Koppanen2009-12-2617-126/+170
| | | | | | Clean up / remove whitespace differences to make next merge easier Removed unnecessary files from trunk
* Changed tidyNode class to disallow manual node creation.Pierrick Charron2009-12-253-22/+10
|
* Removed spurious high-ascii char from previous commmitMatteo Beccati2009-12-251-1/+1
|
* - Updated ext/pgsql tests to work w/ PostgreSQL 8.5Matteo Beccati2009-12-2511-6/+195
| | | | | # tested w/ 8.5alpha3
* - Updated pdo_pgsql tests to be 8.5+ friendlyMatteo Beccati2009-12-253-5/+9
|
* Fixed bug #50558 (Broken object model when extending tidy)Pierrick Charron2009-12-252-15/+28
|
* Added missing host validation for HTTP urls inside FILTER_VALIDATE_URL.Ilia Alshanetsky2009-12-241-0/+23
|
* Changed stream_resolve_include_path to use zend_resolve_pathMikko Koppanen2009-12-244-0/+63
| | | | | | backported stream_resolve_include_path to PHP 5.3 backported stream_resolve_include_path test to PHP 5.3
* fix the fix for #47409Antony Dovgal2009-12-241-1/+1
| | | | | use correct comparison and add missing scope checks to trunk
* - Update tests to reflect current behavior after fix for bug #50185Sriram Natarajan2009-12-242-2/+8
|
* cleanup some code, improve error handlingStanislav Malyshev2009-12-2310-41/+74
|
* - wsJani Taskinen2009-12-231-11/+9
|
* Fixed bug #47409 (extract() problem with array containing word "this").Ilia Alshanetsky2009-12-231-0/+3
|
* Unify. The typedef-ed structs in mysqlnd are always capitalized.Andrey Hristov2009-12-234-14/+14
|
* 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
|
* - Fix bug #46478 (htmlentities() uses obsolete mapping table for characterMoriyoshi Koizumi2009-12-223-19/+840
| | | | | entity references)
* Fixed bug #45599 (strip_tags() truncates rest of string with invalid attribute).Ilia Alshanetsky2009-12-221-1/+1
|
* - Updated to version 2009.20 (2009t)Derick Rethans2009-12-211-1/+1
|
* Fixed bug #50540 (Crash within ldap_first_reference function)Sriram Natarajan2009-12-211-0/+2
|
* 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.
* - Tune the fix for bug #50508 and make it work with MacOSX, bug #50541.Jani Taskinen2009-12-211-0/+3
|
* - Fixed bug #50508 (compile fails: Conflicting HEADER type declarations)Jani Taskinen2009-12-181-3/+0
| | | | | # 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-171-5/+30
|
* 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-171-91/+47
| | | | | | | | | | 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);'
* 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
|