summaryrefslogtreecommitdiff
path: root/ext
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tag 'php_5_3_0'.php-5.3.0SVN Migration2009-06-298-249/+14
|
* MFH: Fixed bug #48539 (pdo_dblib fails to connect, throws empty PDOExceptionJohannes Schlüter2009-06-291-0/+2
| | | | | "SQLSTATE[] (null)") (Felipe)
* Basic test for max() on 64 bit platforms. Tested on Linux 64 bitandy wharmby2009-06-292-0/+70
|
* Fix testsandy wharmby2009-06-292-14/+11
|
* Basic tests for sleep() and usleep(). Tested on Windows, Linux and Linux 64 bitandy wharmby2009-06-294-0/+168
|
* Fix pathJohannes Schlüter2009-06-281-1/+1
|
* - fix buildPierre Joye2009-06-281-1/+2
|
* - MFH: fix regression introduced by the fix for #48518 (Ilia, Rasmus)Pierre Joye2009-06-281-0/+8
|
* - add licensePierre Joye2009-06-261-0/+34
|
* Revert mysqlnd to RC3 state after issues with pconnectsJohannes Schlüter2009-06-2511-155/+71
|
* MFH: Fixed bug #48696 (ldap_read() segfaults with invalid parameters) (Felipe)Johannes Schlüter2009-06-252-3/+15
|
* MFH: Fixed bug #48678 (DateInterval segfaults when unserialising (Ilia)Johannes Schlüter2009-06-252-0/+35
|
* fix skipifZoe Slattery2009-06-251-0/+3
|
* fix skipifZoe Slattery2009-06-251-0/+3
|
* MFH Fix bug #48679 - Crash in SQLite with count on an unbuffered query set ↵Johannes Schlüter2009-06-252-0/+25
| | | | (Scott)
* fix slightly unclear error message in generation of phar.pharGreg Beaver2009-06-241-8/+20
|
* - MFH: Fixed memleak when depth arg is less than zeroFelipe Pena2009-06-241-0/+1
|
* - add license infoPierre Joye2009-06-241-0/+53
|
* Fixed bug #48643 (String functions memory issue)Dmitry Stogov2009-06-241-2/+23
|
* Fix testandy wharmby2009-06-231-1/+1
|
* New and fixed html tests. Tested in Windows, Linux and Linux 64.andy wharmby2009-06-235-10/+112
|
* New basic parse_str() tests. Tested on Windows,Linux and Lnux 64 bit. Some ↵andy wharmby2009-06-235-0/+476
| | | | tests fail on PHP 6 (tagged with XFAIL) due to bug 48658
* MFH: Fix build problem (Kalle)Johannes Schlüter2009-06-231-1/+3
|
* MFH: Fix bug #48644 mysqlnd does not compile with '--enable-mysqlnd-threading'David Soria Parra2009-06-231-1/+1
|
* MFH: Fix arginfo for libxml_disable_entity_loader() and ↵Hannes Magnusson2009-06-231-2/+2
| | | | libxml_use_internal_errors()
* MFH The experimental warning sohuld be in the configure output...Johannes Schlüter2009-06-231-2/+3
|
* The json header should be installed so other exts can use itJohannes Schlüter2009-06-231-0/+1
|
* MFH: add libxml_disable_entity_loader functionRob Richards2009-06-231-0/+37
|
* MFH: Move these defines to config.w32.hKalle Sommer Nielsen2009-06-231-4/+1
| | | | | Also credit Pierre for the inet_ntop()/inet_pton() implementations
* Revert unrelated bits to the previous commitIlia Alshanetsky2009-06-221-1/+1
|
* - #48619, imap_search ALL segfaultsPierre Joye2009-06-221-3/+3
|
* MFB: Fixed bug #48636 (Error compiling of ext/date on netware).Ilia Alshanetsky2009-06-221-1/+5
|
* - Fixed bug #48641 (tmpfile() uses old parameter parsing)Felipe Pena2009-06-221-2/+2
|
* MFH Specific test for bug #48276Scott MacVicar2009-06-211-0/+9
|
* MFH Fix bug #48276 - year is a long long so we need %lld so big endian ↵Scott MacVicar2009-06-211-1/+1
| | | | systems print the correct value.
* Fix proto and arginfoHannes Magnusson2009-06-211-1/+2
|
* Fixed bug #48620 (X-PHP-Originating-Script assumes no trailing CRLF inIlia Alshanetsky2009-06-211-1/+1
| | | | | existing headers)
* MFH: fixed bug #48555 (ImageFTBBox() differs from previous versions for ↵Takeshi Abe2009-06-213-13/+34
| | | | texts with new lines)
* MFH: Fixed arginfo for array_map, patch by Matthew Fonda ↵Kalle Sommer Nielsen2009-06-201-3/+2
| | | | <matthewfonda@gmail.com>
* MFH: Fix memleakKalle Sommer Nielsen2009-06-191-1/+0
|
* Fix test; remove spurious codeandy wharmby2009-06-181-8/+0
|
* Basic tests for strftime(). Tested on Windows (all tests skip), Linux and ↵andy wharmby2009-06-182-0/+154
| | | | Liinux 64 bit
* fix EXPECT section of testGreg Beaver2009-06-181-2/+2
|
* Temporarily disable this optimization causing too much trouble, kept in HEADJohannes Schlüter2009-06-181-0/+6
|
* - Updated to version 2009.10 (2009j)Derick Rethans2009-06-181-3/+3
|
* Tests from Berlin test festZoe Slattery2009-06-1834-0/+493
|
* MFB5.2: "Make this happy on gcc2"Hannes Magnusson2009-06-171-0/+4
|
* MFH:Andrey Hristov2009-06-172-9/+9
| | | | | | | | | | | | | | | | Fix two problems: - The value of mysqli_get_client_info() has been changed recently and did not include "mysqlnd" anymore thus the test suite was thinking the build is always libmysql. This did not kept the suite from running pconn tests - Going back to the libc allocator because the memory arena could be on a persistent connections. If the build is not debug there will be no error but the memory will be freed and in the second use of this pconn freed memory will be used - not good! For now the arena doesn't take an argument whether it should allocate persistently or not, thus persistent is safe for now. Johannes gave his +1 to commit this.
* - MFH: Fixed bug #48578 (Can't build 5.3 on FBSD 4.11) (Rasmus)Felipe Pena2009-06-171-0/+4
|
* MFH Add SplDoublyLinkedList::prev() and fix a memory leak when the iterator ↵Scott MacVicar2009-06-174-0/+82
| | | | pointer isn't at the end