summaryrefslogtreecommitdiff
path: root/ext
Commit message (Collapse)AuthorAgeFilesLines
* Fix for bug #52221 Misbehaviour of magic_quotes_runtime (get/set))Andrey Hristov2010-08-251-0/+2
|
* fix the build. two mysqli functions were missing afterAndrey Hristov2010-08-251-0/+1
| | | | | recent commit - set_charset and get_charset
* Fixed bug #52681 (mb_send_mail() appends an extra MIME-Version header).Adam Harvey2010-08-259-17/+45
|
* -fix logic (and BC break)Pierre Joye2010-08-231-1/+1
|
* - WSPierre Joye2010-08-231-14/+14
|
* - revert fix for #52655, rev. 302614Pierre Joye2010-08-231-1/+1
|
* - add follow_location support for http stream, enabled by default to keep ↵Pierre Joye2010-08-231-3/+9
| | | | BC. Allows one to ignore the location header, w/o having to ignore errors or other tricks, the location data is however still available (meta)
* Fixed bug #52655 (SimpleXMLIterator supports ArrayAccess without ↵Kalle Sommer Nielsen2010-08-211-1/+1
| | | | implementing the interface)
* - Added missing void parameter checksFelipe Pena2010-08-211-0/+20
|
* - fix string validation, MOPS-2010-24Pierre Joye2010-08-201-1/+1
|
* Fix for bug #52654 mysqli doesn't install headers with structures it usesAndrey Hristov2010-08-2011-288/+346
|
* Fixed bug #52599 (iconv output handler outputs incorrect content type when ↵Ilia Alshanetsky2010-08-191-1/+7
| | | | flags are used).
* Fixed possible crash in php_mssql_get_column_content_without_type()Kalle Sommer Nielsen2010-08-181-0/+8
| | | | # Also fix NEWS entry in PHP_5_2 for previous commit
* Fixed bug #52636 (php_mysql_fetch_hash writes long value into int)Kalle Sommer Nielsen2010-08-181-1/+1
| | | | # Tested by rein at basefarm dot no
* - Improved fix for bug #52573Felipe Pena2010-08-182-5/+11
|
* Fix for Bug #52613 crash in mysqlndAndrey Hristov2010-08-171-13/+25
|
* Update with PHP_DEF_FE, also update the testAndrey Hristov2010-08-172-1/+3
|
* Fix my fix for arginfo, trunk patch will follow shortlyKalle Sommer Nielsen2010-08-171-1/+1
|
* Fixed the $context parameter on copy() to have an effect (approved for 5.3 ↵Kalle Sommer Nielsen2010-08-172-8/+19
| | | | | | | by Johannes) # To not change a PHPAPI in a point release, a new function have been added to support contexts: # php_copy_file_ctx(), php_copy_file_ex() now simply wraps to that
* Fix arginfo for copy(), see r302376 for more infoKalle Sommer Nielsen2010-08-161-0/+2
|
* Added utf16 and utf32 support, as in MySQL 5.5, in mysqlnd.Andrey Hristov2010-08-163-222/+206
| | | | | | | | Fixed tests, so they don't try to use SET NAMES utf16|utf32, as character_set_client can't be set to those (the lexer can't read ucs2, utf16 and utf32). Added support for 4-byte utf8, as found in MySQL 5.5
* Fix test, so it doesn't fail with MySQL 5.5, where InnoDBAndrey Hristov2010-08-161-1/+1
| | | | | is the default engine
* detect easily which charset doesn't workAndrey Hristov2010-08-161-9/+10
|
* - Updated to version 2010.12 (2010l)Derick Rethans2010-08-161-6/+6
|
* - WSPierre Joye2010-08-161-8/+8
|
* Sync with trunk, fixes build failure on MacOSX.Andrey Hristov2010-08-162-1/+3
| | | | | Fix for Bug #52417 MySQLi build failure with mysqlnd
* - Updated to version 2010.11 (2010k)Derick Rethans2010-08-161-612/+673
|
* Win32 build fixesIlia Alshanetsky2010-08-142-1/+13
|
* Upgraded bundled Sqlite3 to version 3.7.0.1Ilia Alshanetsky2010-08-142-3636/+10059
|
* MFH: Upgraded bundled PCRE to version 8.10.Ilia Alshanetsky2010-08-1426-1259/+4211
|
* - Fixed the fix for bug #52546Felipe Pena2010-08-131-1/+1
|
* Changed mysqli_report() to be per-request specific rather than per-process ↵Kalle Sommer Nielsen2010-08-131-0/+1
| | | | specific (Fixes #52390)
* Fix for bug #52413 MySQLi build failure on OS XAndrey Hristov2010-08-131-0/+4
|
* Fix for bug #52433 Call to undefined method mysqli::poll()Andrey Hristov2010-08-133-0/+55
|
* Make this function static, as it is used only in this file.Andrey Hristov2010-08-121-2/+8
| | | | | Add additional comment about how it works.
* Allocate memory in a burst mode, and later use it. IncreasesAndrey Hristov2010-08-121-14/+22
| | | | | | | | locality of the data. Also use MYSQLND_INC_CONN_STATISTIC in one place, instead of two, thus removing code duplication from macro expansion - less code to fit in the instruction cache.
* Switch from using PHP_MAJOR_VERSION to separate define forAndrey Hristov2010-08-1212-40/+46
| | | | | | unicode. Unicode is no more, but these are "bookmarks" where to change mysqlnd, if Unicode becomes trendy again.
* ws + csAndrey Hristov2010-08-122-21/+16
|
* Changed deprecated ini options on startup from E_WARNING to E_DEPRECATED ↵Kalle Sommer Nielsen2010-08-1128-48/+48
| | | | | | (Fixes #52570) # Trunk patch will follow shortly
* - Fixed bug #52573 (SplFileObject::fscanf Segmentation fault)Felipe Pena2010-08-102-1/+17
|
* Fix Request #52302 mysqli_fetch_all does not work with MYSQLI_USE_RESULTAndrey Hristov2010-08-091-11/+8
|
* Lay foundations for named pipe support in mysqlndAndrey Hristov2010-08-093-3/+18
|
* - Fixed bug #50481 (Storing many SPLFixedArray in an array crashes)Felipe Pena2010-08-081-0/+3
|
* Additional fix for bug #52550 & fix test & warning from previous fixesIlia Alshanetsky2010-08-082-4/+10
|
* Fixed bug #51610 (Using oci_connect causes PHP to take a long time to exit). ↵Christopher Jones2010-08-073-23/+24
| | | | Do PECL OCI8 1.4.3 release
* - Added missing SKIPIFFelipe Pena2010-08-065-0/+10
|
* - Fix testFelipe Pena2010-08-061-0/+1
|
* - Fixed bug #52533 (ext/curl/tests/curl_multi_getcontent_basic3.phpt broken ↵Felipe Pena2010-08-061-0/+5
| | | | | | | due php.net/robots.txt) patch by: glen at delfi dot ee
* - Updated generated fileFelipe Pena2010-08-061-2/+2
|
* - Fix buildFelipe Pena2010-08-061-1/+1
|