summaryrefslogtreecommitdiff
path: root/UPGRADING
diff options
context:
space:
mode:
authorChristoph M. Becker <cmb@php.net>2015-08-18 13:44:14 +0200
committerChristoph M. Becker <cmb@php.net>2015-08-18 13:44:14 +0200
commit1b5e87a579080da1452e173981b7d8a6814f15c0 (patch)
tree8e0bdda339242780b63a16cfbecccffdd987b37a /UPGRADING
parent22eaa995ee62ba6332a82d4754a179b6be847fe9 (diff)
downloadphp-git-1b5e87a579080da1452e173981b7d8a6814f15c0.tar.gz
Fix #70289: Different sort in php7 (and hhvm) compared to php5
We add a respective note to UPGRADING. Furthermore, as renaming of zend_qsort() and the new zend_insert_sort() are irrelevant for user-land, we move this info to UPGRADING.INTERNALS.
Diffstat (limited to 'UPGRADING')
-rw-r--r--UPGRADING5
1 files changed, 2 insertions, 3 deletions
diff --git a/UPGRADING b/UPGRADING
index 2df744e9cc..f84fa0aff1 100644
--- a/UPGRADING
+++ b/UPGRADING
@@ -431,9 +431,8 @@ Standard library changes
. call_user_method() and call_user_method_array() no longer exists.
. ob_start() no longer issues an E_ERROR, but instead an E_RECOVERABLE_ERROR in case an
output buffer is created in an output buffer handler.
- . Improved zend_qsort(using hybrid sorting algo) for better performance,
- and also renamed zend_qsort to zend_sort.
- . Added stable sorting algo zend_insert_sort.
+ . The internal sorting algorithm has been improved, what may result in
+ different sort order of elements that compare as equal.
. Removed dl() function on fpm-fcgi.
. setcookie() with an empty cookie name now issues a WARNING and doesn't send an empty set-cookie header line anymore.