summaryrefslogtreecommitdiff
path: root/ext
Commit message (Collapse)AuthorAgeFilesLines
* Merge with internal versionAndrey Hristov2008-01-2316-115/+300
|
* MFH: fix #43559 (array_merge_recursive() doesn't behave as expected with ↵Antony Dovgal2008-01-232-3/+15
| | | | | | | duplicate NULL values) patch by Felipe
* use expectFAntony Dovgal2008-01-231-1/+1
|
* fix testAntony Dovgal2008-01-231-0/+3
|
* fix leak appearing when appending data to unnamed attributeAntony Dovgal2008-01-232-7/+28
|
* Fixed bug #43912 (Interbase column names are truncated to 31 characters)Ilia Alshanetsky2008-01-231-1/+1
|
* - MFH Bugfix #37076 (SimpleXML ignores .=). (felipe, marcus)Marcus Boerger2008-01-222-4/+20
|
* MFH: Typos (Dan Scott)Etienne Kneuss2008-01-221-25/+76
| | | | | ctor inside the structure. dtor/ctor used on push/pop for better potential interoperability
* add new testAntony Dovgal2008-01-221-0/+15
|
* use new param parsing APIIlia Alshanetsky2008-01-221-9/+7
|
* MFH: Add doxygen docs for SplDoublyLinkedList, SplStack, SplQueueEtienne Kneuss2008-01-214-4/+197
|
* Optimize wddx boolean encodingIlia Alshanetsky2008-01-202-5/+3
|
* MFH: Fixed bug#43875 (Two error messages returned for $new and $flag ↵Hannes Magnusson2008-01-201-1/+1
| | | | argument in mysql_connect())
* MFH: Fix mem errorsEtienne Kneuss2008-01-202-27/+37
|
* - MFH (lcfirst())David Coallier2008-01-194-0/+37
| | | | | - Initial test for lcfirst
* Fix compile issueAndrey Hristov2008-01-191-1/+1
|
* MFH: Add ifdefChristopher Jones2008-01-181-0/+2
|
* MFH: fix testAntony Dovgal2008-01-181-4/+1
|
* - MFB: reflect the correct versionPierre Joye2008-01-182-2/+4
|
* MFPECL: install headersGreg Beaver2008-01-182-0/+36
|
* update module version numberGreg Beaver2008-01-181-1/+1
|
* - Fixed bug #41599 (setTime() fails after modify() is used).Derick Rethans2008-01-172-0/+29
|
* - MFH: Fixed bug #43075 (Support 2007-11-01T24:00:00+00:00).Derick Rethans2008-01-173-22/+31
|
* - MFH: Fixed bug #43808 (date_create never fails (even when it should)).Derick Rethans2008-01-172-5/+69
|
* - Fixed bug #43003 (Invalid timezone reported for DateTime objects constructedDerick Rethans2008-01-172-3/+32
| | | | | using a timestamp).
* - MFH: Added support for abbreviation and offset based timezone specifiers forDerick Rethans2008-01-175-31/+237
| | | | | | | | | DateTime::getOffset() and DateTime::getName(). - MFH: Fixed bug #43527 (DateTime created from a timestamp reports environment timezone). - MFH: Fixed bug #42190 (Constructing DateTime with TimeZone Indicator invalidates DateTimeZone).
* Fixed bug #43871 (crash inside dns_get_record)Ilia Alshanetsky2008-01-171-1/+1
|
* - MFH Fixed Bug #37964 (Reflection shows private methods of parent class)Marcus Boerger2008-01-162-1/+55
| | | | | (felipe@php.net)
* - Making sure the tests are not failing after modifications to the newDavid Coallier2008-01-161-0/+0
| | | | | zend-parsing-parameters in ucfirst()
* MFH: fix #43863 (str_word_count() breaks on cyrillic "ya" in locale cp1251)Antony Dovgal2008-01-161-1/+1
| | | | | patch by phprus at gmail dot com
* Fixed wrong type castDmitry Stogov2008-01-161-1/+1
|
* - MFHDavid Coallier2008-01-161-7/+17
| | | | | | - Making sure this is also using the good zend parsing and added the php_ucfirst function
* MFH: fix #41941 (oci8 extension not lib64 savvy)Christopher Jones2008-01-161-4/+13
|
* MFH: Testcase for #43492 (nested cursors)Christopher Jones2008-01-151-0/+378
|
* MFB: fix #43497 (OCI8 XML/getClobVal aka temporary LOBs leak UGA memory)Christopher Jones2008-01-154-4/+320
|
* MFH: fix win buildRob Richards2008-01-151-10/+24
|
* MFH: fix memleak in sign and verify functionsRob Richards2008-01-151-0/+2
|
* Allow test to run from any directoryIlia Alshanetsky2008-01-151-1/+1
|
* Fix ZTS build, fix testsEtienne Kneuss2008-01-154-9/+10
|
* MFH: Bump yearEtienne Kneuss2008-01-151-1/+1
|
* MFH: Implement splDoublyLinkedList, splQueue, splStack classes in SPLEtienne Kneuss2008-01-1512-5/+1449
|
* MFH: Fix bug #42850 array_walk_recursive() leaves references, refix bug #34982Brian Shire2008-01-142-1/+60
|
* Missing patch bit from the FETCH_GROUP fixIlia Alshanetsky2008-01-141-0/+2
|
* MFB5.2: fix script for files with short namesNuno Lopes2008-01-141-3/+3
|
* MFH: fix windows build for all cases, and always export symbols (Steph Fox)Greg Beaver2008-01-142-5/+1
|
* MFH: add missing define for statically-built zip extGreg Beaver2008-01-131-0/+2
|
* - Fixed TSRM builds.Derick Rethans2008-01-131-2/+2
|
* - Added new date/time functionality:Derick Rethans2008-01-135-125/+736
| | | | | | | | | | | | | * date_parse_from_format(): Parse date/time strings according to a format. * date_create_from_format()/DateTime::createFromFormat(): Create a date/time object by parsing a date/time string according to a given format. * date_get_last_errors()/DateTime::getLastErrors(): Return a list of warnings and errors that were found while parsing a date/time string through: - strtotime() / new DateTime - date_create_from_format() / DateTime::createFromFormat() - date_parse_from_format() # [DOC]
* Fixed bug #42945 (preg_split() swallows part of the string)Nuno Lopes2008-01-132-1/+91
|
* upgrade PCRE to version 7.5Nuno Lopes2008-01-1324-2253/+1065
|