History log of /php-src/NEWS (Results 10601 – 10625 of 15462)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# 7e61cffb 05-Oct-2010 Gustavo André dos Santos Lopes

- Fixed bug #52981 (Unicode casing table was out-of-date).
Updated with UnicodeData-6.0.0d7.txt and included the
source of the generator program with the distribution.
#The replaced t

- Fixed bug #52981 (Unicode casing table was out-of-date).
Updated with UnicodeData-6.0.0d7.txt and included the
source of the generator program with the distribution.
#The replaced tables, generated circa 2002, seem to reflect
#Unicode 3.2. I was unable to generate the same property
#offsets with Unicode 3.2 data, but all the tests I made
#indicate php_unicode_is_prop() is returning the correct
#values. The replaced file merely says it used a "modified
#version" of ucgendat, which is not very helpful. The results
#I got were not significantly different, only slightly higher
#offsets at two properties, which were carried over to the
#subsequent properties.
#I was, however, able to replicate precisely the casing table.
#The extent of the "modifications" besides omitting most of
#the tables, a slightly different layout and the casing table
#offsets having been multiplied by 3 is unclear.
#The test suite showed no regressions; however, it's very poor
#in testing the modified portion of the extension.

show more ...

# f2552322 04-Oct-2010 Kalle Sommer Nielsen

Revert for now

# 817c28c8 04-Oct-2010 Gustavo André dos Santos Lopes

- Implemented FR #50692, not uploaded files don't count towards
max_file_uploads limit.
- As a side improvement, temporary files are not opened for
empty uploads and, in debug mode, 0

- Implemented FR #50692, not uploaded files don't count towards
max_file_uploads limit.
- As a side improvement, temporary files are not opened for
empty uploads and, in debug mode, 0-length uploads.

show more ...

# 090a9b33 03-Oct-2010 Felipe Pena

- Fixed bug #52971 (PCRE-Meta-Characters not working with utf-8)
# In PCRE, by default, \d, \D, \s, \S, \w, and \W recognize only ASCII
# characters, even in UTF-8 mode. However, t

- Fixed bug #52971 (PCRE-Meta-Characters not working with utf-8)
# In PCRE, by default, \d, \D, \s, \S, \w, and \W recognize only ASCII
# characters, even in UTF-8 mode. However, this can be changed by setting
# the PCRE_UCP option.

show more ...

# 4d8503a2 01-Oct-2010 Dmitry Stogov

Fixed bug #52879 (Objects unreferenced in __get, __set, __isset or __unset can be freed too early). (mail_ben_schmidt at yahoo dot com dot au, Dmitry)

# d252a45e 01-Oct-2010 Kalle Sommer Nielsen

* Added PHP_RAND_MAX and PHP_MT_RAND_MAX constants
* Deprecated getrandmax() and mt_getrandmax() in favour of the new constants

# We should promote constants for static data like such in

* Added PHP_RAND_MAX and PHP_MT_RAND_MAX constants
* Deprecated getrandmax() and mt_getrandmax() in favour of the new constants

# We should promote constants for static data like such instead of function calls
# maybe this was just an old left-over

show more ...

# b55d4ecb 01-Oct-2010 Stanislav Malyshev

Fix bug #52906 gmp_mod returns negative result when non-negative is expected

# 5f995639 30-Sep-2010 Adam Harvey

Fixed bug #52941 (The 'iconv_mime_decode_headers' function is skipping
headers).

# 0db999a9 29-Sep-2010 Gustavo André dos Santos Lopes

- Fixed bug #52944 (Invalid write on second and subsequent reads with an inflate filter fed invalid data).

# a5459c09 29-Sep-2010 Felipe Pena

- Fixed bug #52947 (segfault when ssl stream option capture_peer_cert_chain used)

# 6bae8fbd 28-Sep-2010 Pierre Joye

- Fixed possible flaw in open_basedir (CVE-2010-3436)

# 2cd1661e 27-Sep-2010 Felipe Pena

- Fixed bug #52931 (strripos not overloaded with function overloading enabled)

# 42a80fac 27-Sep-2010 Andrey Hristov

Fixed bug #45921 (Can't initialize character set hebrew)

# 2d4c7b40 27-Sep-2010 Adam Harvey

Fix bug #52929 (Segfault in filter_var with FILTER_VALIDATE_EMAIL with large
amount of data).

# 4839387e 26-Sep-2010 Pierre Joye

- fix bug #52926, zlib fopen wrapper does not use the context

# c5fe8b72 22-Sep-2010 Andrey Hristov

here comes the news

# b962a566 22-Sep-2010 Andrey Hristov

hier comes the news

# 208aa102 18-Sep-2010 Kalle Sommer Nielsen

Improved performance of unserialize(), original patch by galaxy dot mipt at gmail dot com

# ab3fc009 16-Sep-2010 Felipe Pena

- Added missing entries related to pdo_dblib

# cb9c8233 16-Sep-2010 Adam Harvey

Implement FR #44331 (Formatting option for json_encode). Bikeshedding about the
exact form of the JSON pretty printing and brace handling will only be accepted
in the form of patches. ;)

# 726fe638 16-Sep-2010 Adam Harvey

Implemented FR #49366 (Make slash escaping optional in json_encode()).

# 664f0661 15-Sep-2010 Pierre Joye

- fix news

# 41624094 15-Sep-2010 Adam Harvey

Fix bug #52849 (GNU MP invalid version match).

# f2df6a4a 15-Sep-2010 Dmitry Stogov

- Improved memory usage
. zend_function.pass_rest_by_reference is replaced by
ZEND_ACC_PASS_REST_BY_REFERENCE in zend_function.fn_flags
. zend_function.return_reference is replace

- Improved memory usage
. zend_function.pass_rest_by_reference is replaced by
ZEND_ACC_PASS_REST_BY_REFERENCE in zend_function.fn_flags
. zend_function.return_reference is replaced by ZEND_ACC_RETURN_REFERENCE
in zend_function.fn_flags
. zend_arg_info.required_num_args removed. it was needed only for internal
functions. Now the first arg_info for internal function (which has special
meaning) is represented by zend_internal_function_info structure.
. zend_op_array.size, size_var, size_literal, current_brk_cont,
backpatch_count moved into CG(context), because they are used only during
compilation.
. zend_op_array.start_op is moved into EG(start_op), because it's used
only for 'interactive' execution of single top-level op-array.
. zend_op_array.done_pass_two is replaced by ZEND_ACC_DONE_PASS_TWO in
zend_op_array.fn_flags.
. op_array.vars array is trimmed (reallocated) during pass_two.
. zend_class_entry.constants_updated is replaced by
ZEND_ACC_CONSTANTS_UPDATED in zend_class_entry.ce_flags
. the size of zend_class_entry is reduced by sharing the same memory space
by different information for internal and user classes.
See zend_class_inttry.info union.

show more ...

# 09ca4291 15-Sep-2010 Felipe Pena

- Fixed bug #52843 (Segfault when optional parameters are not passed in to mssql_connect)

1...<<421422423424425426427428429430>>...619