summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 5.4.28php-5.4.28PHP-5.4.28Stanislav Malyshev2014-04-282-3/+3
|
* Fix bug #67060: use default mode of 660Stanislav Malyshev2014-04-283-4/+6
|
* Revert "Fixed bug #64604"Stanislav Malyshev2014-04-243-46/+4
| | | | | This reverts commit b05c088a3abf8e4c6fb6e40418423a9e2dd3d929. Breaks case like this: /path/path2?param=foo:bar
* 5.4.28 RC1php-5.4.28RC1Stanislav Malyshev2014-04-153-4/+4
|
* Fix test - on CI somebody could create a process in the meantimeStanislav Malyshev2014-04-141-2/+2
|
* fix windows buildAnatol Belski2014-04-141-1/+7
|
* Fix #66942: openssl_seal() memory leakChuan Ma2014-04-142-12/+16
| | | | Fix #66952: memory leak in openssl_open()
* ws fixStanislav Malyshev2014-04-141-12/+12
|
* Fix null byte in LDAP bindingsStanislav Malyshev2014-04-142-0/+13
|
* Fix bug #66171: better handling of symlinksStanislav Malyshev2014-04-142-17/+22
|
* backported some ext/intl tests from 5.6 into 5.4Anatol Belski2014-04-1438-19/+3652
|
* Fixed bug #67033 Remove reference to Windows 95Anatol Belski2014-04-142-4/+4
|
* fix NEWSStanislav Malyshev2014-04-131-0/+4
|
* Merge branch 'pull-request/518' into PHP-5.4Stanislav Malyshev2014-04-132-8/+30
|\ | | | | | | | | * pull-request/518: Fix #66021 (Blank line inside empty array/object)
| * Fix #66021 (Blank line inside empty array/object)Kevin Israel2013-11-022-8/+30
| | | | | | | | | | | | | | | | Changed json_encode() so that when the JSON_PRETTY_PRINT option is specified, the pair of linefeeds immediately after an opening bracket and before the corresponding closing bracket is omitted when the array or object contains no elements or accessible properties (and hence would have a blank line between the brackets).
* | Fixed bug #64604Ingo Walz2014-04-133-4/+46
| |
* | Fix #66562: Consistency bug where curl_multi_getcontent behaves different ↵Freek2014-04-132-0/+6
| | | | | | | | | | | | | | from curl_exec curl_exec returns an empty string when data is received from a domain that returns zero content. curl_multi_getcontent returned null. Now it returns an empty string fixing the incosistency
* | Fix bug #66482, replace wrong item name 'priority' with 'process.priority' ↵itxx002014-04-132-1/+4
| | | | | | | | in php-fpm.conf
* | Fix windows buildStanislav Malyshev2014-04-131-0/+3
| |
* | Fix bug #66721Boro Sitnikovski2014-04-133-0/+19
| | | | | | | | Add NULL check to php_date_parse_tzfile's retval
* | fix apr_psprintf format string from e0df4e3dba7c4ab92442b9e82c1de01fdbaa3cceJeff Trawick2014-04-132-1/+6
| |
* | Fixed bug #67024 - getimagesize should recognize BMP files with negative heightGabor Buella2014-04-135-2/+22
| |
* | Reverted to 5a0da281e5a9fa02db18b4822d8b103c65849fa9Bob Weinand2014-04-133-23/+1
| | | | | | | | Discussion: http://news.php.net/php.cvs/76836
* | Forgot title in phpt for bug #67064Bob Weinand2014-04-131-1/+1
| |
* | Updated NEWSBob Weinand2014-04-131-0/+2
| |
* | Fix bug #67064 in a BC safe wayBob Weinand2014-04-132-1/+21
| | | | | | | | | | You can use an optional parameter now when implementing the Countable interface to get the $mode passed to count().
* | fix typoFerenc Kovacs2014-04-131-1/+1
| |
* | Made usage of php_hash_environment useful by updating instead of just adding ↵Bob Weinand2014-04-121-1/+1
| | | | | | | | argc
* | Cleanup $ is not needed for gitPopa Adrian Marius2014-04-1020-39/+3
| |
* | fix typoFerenc Kovacs2014-04-101-1/+1
| |
* | abstract namespace for unix sockets is a linux only featureFerenc Kovacs2014-04-091-0/+1
| |
* | cleanupPopa Adrian Marius2014-04-081-1/+1
| |
* | Fixes bug #66071: isc_interprete is unsafe and deprecated , it is replaced ↵Popa Adrian Marius2014-04-081-4/+4
| | | | | | | | with fb_iterpret
* | Fixed bug #66084 simplexml_load_string() mangles empty node nameAnatol Belski2014-04-054-1/+90
| |
* | cleanup NEWSStanislav Malyshev2014-04-031-5/+5
| |
* | Fix Bug #66736 fpassthru brokenMichael Wallner2014-04-033-2/+22
| |
* | Fix bug #66182 exit in stream filter produces segfaultMichael Wallner2014-04-032-0/+6
| | | | | | | | Unfortunately, a segv caused by exit cannot be tested reliably.
* | Fixed bug #61019 (Out of memory on command stream_get_contents)Michael Wallner2014-04-023-0/+83
| |
* | Fix bug #64330Michael Wallner2014-04-023-1/+27
| | | | | | | | stream_socket_server() creates wrong Abstract Namespace UNIX sockets
* | updated NEWSAnatol Belski2014-04-011-0/+4
| |
* | added test for bug #53965Anatol Belski2014-04-014-0/+58
| |
* | Fixed bug #53965 <xsl:include> cannot find files w/ relative paths when ↵Anatol Belski2014-04-011-0/+6
| | | | | | | | loaded w/ "file://"
* | NEWSRemi Collet2014-03-311-0/+4
| |
* | Fixed Bug #66987 Memory corruption in fileinfo ext (bigendian)Remi Collet2014-03-311-6/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | On little endian: map->p == php_magic_database map->magic[i] = pointer into the map map->p == NULL map->magic[i] = pointer to allocated memory On big endian (ppc64, s390x, ...): map->p != php_magic_database and map->p != NULL map->magic[i] = pointer into a copy of the map Trying to efree pointer in the later cause memory corruption Thanks to dkatulek / Red Hat for the report.
* | update lib versionsAnatol Belski2014-03-271-1/+1
| |
* | - Updated to version 2014.2 (2014b)Derick Rethans2014-03-251-386/+405
| |
* | NEWSRemi Collet2014-03-251-0/+4
| |
* | Fixed bug #66946 extensive backtracking in awk rule regular expressionRemi Collet2014-03-251-7136/+7136
| | | | | | | | | | | | | | | | | | CVE-2013-7345 Applied upstream patch: https://github.com/file/file/commit/ef2329cf71acb59204dd981e2c6cce6c81fe467c Add the magicdata.patch to track patches applied to upstream data file.
* | Fixed bug #66946 extensive backtracking in awk rule regular expressionRemi Collet2014-03-251-0/+39
| | | | | | | | | | | | | | | | | | CVE-2013-7345 Applied upstream patch: https://github.com/file/file/commit/ef2329cf71acb59204dd981e2c6cce6c81fe467c Add the magicdata.patch to track patches applied to upstream data file.
* | more fixes related to bug #65715Anatol Belski2014-03-242-4/+24
| |