summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * this will become PHP 5.3.21Johannes Schlüter2012-12-053-4/+8
| |
| * Two tests deactivated until #63688 was fixedAnatoliy Belsky2012-12-052-0/+8
| |
| * NEWSRemi Collet2012-12-011-0/+4
| |
| * Fixed Bug #63435 Datetime::format('u') sometimes wrong by 1 microsecondRemi Collet2012-12-013-3/+19
| | | | | | | | | | | | | | When storing '015700' microseconds in a Datetime object, Datetime::format('u') returns '015699' Already known per bug45554 reproducer (also fixed).
* | Need more that 2G memoryXinchen Hui2012-12-101-2/+2
|/
* Fixed bug #63377 (Segfault on output buffer)Xinchen Hui2012-11-303-1/+61
|
* FormatXinchen Hui2012-11-301-2/+2
|
* Fixed bug #63398 (Segfault when polling closed link)Xinchen Hui2012-11-303-2/+45
|
* Fixed bug #63271 (SOAP wsdl cache is not enabled after initial requests)Dmitry Stogov2012-11-292-21/+6
|
* Fixed bug #63635 (Segfault in gc_collect_cycles)Dmitry Stogov2012-11-293-2/+63
|
* Fixed Bug #63581 Possible buffer overflowRemi Collet2012-11-282-3/+7
| | | | | | | | | In fpm-log, possible buffer overflow. Check for length is done at the beginning of the loop, so is not done when overflow occurs on the last loop (len = 1024 or 1025). (ack from fat). This issue where found from by static code analysis tool and, so, I can't provide any reproducer.
* Fixed Bug #63581 Possible null dereferenceRemi Collet2012-11-281-2/+6
| | | | | | | | Possible NULL dereference when trying to delete the single item of a list (ack from fat). This issues where found from by static code analysis tool and, so, I can't provide any reproducer.
* Merge branch 'PHP-5.3' of git.php.net:php-src into PHP-5.3Remi Collet2012-11-2810-109/+84
|\ | | | | | | | | | | | | * 'PHP-5.3' of git.php.net:php-src: Fixed bug #63590 Fileinfo delivers ifferent results in TS and NTS under Windows This test isn't supposed to pass on windows Fixed Bug #63614 (Fatal error on Reflection)
| * Fixed bug #63590 Fileinfo delivers ifferent results in TS and NTS under WindowsAnatoliy Belsky2012-11-277-107/+29
| |
| * This test isn't supposed to pass on windowsAnatoliy Belsky2012-11-271-1/+6
| |
| * Fixed Bug #63614 (Fatal error on Reflection)Xinchen Hui2012-11-273-1/+49
|/
* add unit test for bug 63126Remi Collet2012-11-241-0/+52
|
* NEWSRemi Collet2012-11-241-0/+2
|
* Fixed Bug #63126 DISABLE_AUTHENTICATOR ignores arrayRemi Collet2012-11-241-1/+1
|
* Backported the fix for bug #63248 from 5.4+Anatoliy Belsky2012-11-234-114/+144
|
* Fixed test for bug #63297Anatoliy Belsky2012-11-221-0/+3
|
* PHP 5.3.19Johannes Schlüter2012-11-211-7/+2
|
* Fixed bug #63468 (wrong called method as callback with inheritance)Dmitry Stogov2012-11-203-1/+33
|
* Merge branch 'PHP-5.3' of https://git.php.net/repository/php-src into PHP-5.3Christopher Jones2012-11-186-1368/+1397
|\ | | | | | | | | | | * 'PHP-5.3' of https://git.php.net/repository/php-src: Regenerate Zend ini scanner Fixed bug #63512 parse_ini_file() with INI_SCANNER_RAW removes quotes from value
| * Regenerate Zend ini scannerPierrick Charron2012-11-162-1349/+1335
| | | | | | | | Regenerate both zend_ini_scanner.c and zend_ini_scanner_defs.h
| * Fixed bug #63512 parse_ini_file() with INI_SCANNER_RAW removes quotes from valuePierrick Charron2012-11-164-19/+62
| | | | | | | | Restore the old behavior but keep bug 51094 fixed
* | Merge branch 'PHP-5.3' of https://git.php.net/repository/php-src into PHP-5.3Christopher Jones2012-11-153-0/+8
|\ \ | |/ | | | | | | | | * 'PHP-5.3' of https://git.php.net/repository/php-src: Skip test if directory does not exist Updated NEWS
| * Skip test if directory does not existJohannes Schlüter2012-11-151-0/+3
| | | | | | | | | | Would be good to run this using a directory which is existing everywhere.
| * Updated NEWSAnatoliy Belsky2012-11-142-0/+5
|/
* Enabled apache 2.4 handler build optionPierre Joye2012-11-131-0/+19
|
* - Updated to version 2012.10 (2012j)Derick Rethans2012-11-131-540/+572
|
* Merge branch 'PHP-5.3' of git.php.net:/php-src into PHP-5.3Derick Rethans2012-11-1318-24/+225
|\
| * fix invalid read when trimming empty stringAntony Dovgal2012-11-111-2/+4
| |
| * - BFNFelipe Pena2012-11-091-0/+4
| |
| * - Fixed bug #63451 (config.guess file does not have AIX 7 defined, shared ↵Felipe Pena2012-11-091-1/+1
| | | | | | | | objects are not created)
| * This will be PHP 5.3.20Johannes Schlüter2012-11-083-4/+11
| |
| * Fixed bug #63447 (max_input_vars doesn't filter variables when ↵Xinchen Hui2012-11-075-0/+84
| | | | | | | | mbstring.encoding_translation = On)
| * News entry for png memleak fixRasmus Lerdorf2012-11-051-0/+1
| |
| * Merge branch 'PHP-5.3' of git.php.net:php-src into PHP-5.3Rasmus Lerdorf2012-11-0576-29002/+40359
| |\
| | * Fixed bug #62444 (Handle leak in is_readable on windows).Xinchen Hui2012-11-022-2/+7
| | |
| | * Fixed bug #63241 PHP fails to open Windows deduplicated files.Anatoliy Belsky2012-10-312-0/+13
| | | | | | | | | | | | | | | | | | | | | Fix by (daniel dot stelter-gliese at innogames dot de). No test is supplied because the issue addresses the new feature of the Windows Server 2012 and would need a very specific filesystem setup.
| | * read 1 instead of 2 bytes. The next 2 bytes are 2 and thus not a problemAndrey Hristov2012-10-311-1/+1
| | |
| | * NEWS for bug #62593David Soria Parra2012-10-301-0/+4
| | |
| | * Bug #62593 Updated to account for INOUT parametersWill Fitch2012-10-301-1/+2
| | |
| | * Bug #62593 Updated test to verify bindParam doesn't change original valueWill Fitch2012-10-301-1/+3
| | |
| | * Bug #62593 Updated to always treat zval by valueWill Fitch2012-10-302-4/+9
| | |
| | * Bug #62593 Added test for changeWill Fitch2012-10-301-0/+44
| | |
| | * Bug #62593 Updated pdo_pgsql driver to convert boolean values to pg native ↵Will Fitch2012-10-301-1/+12
| | | | | | | | | | | | format in emulation mode
| | * Fixed bug #63389 (Missing context check on libxml_set_streams_context() ↵Xinchen Hui2012-10-304-12/+30
| | | | | | | | | | | | | | | | | | | | | causes memleak) Simply change the expect parameter type, the valid of the resource will be checked in using time.
| * | These need to be volatile in order to prevent leaking after theRasmus Lerdorf2012-11-051-2/+2
| | | | | | | | | | | | longjmp in the error handler