mirror of
https://github.com/php/php-src.git
synced 2026-04-04 22:52:40 +02:00
Merge branch 'PHP-7.3' into PHP-7.4
* PHP-7.3: Fix #64032: mysqli reports different client_version
This commit is contained in:
3
NEWS
3
NEWS
@@ -31,6 +31,9 @@ PHP NEWS
|
||||
(Jakub Zelenka)
|
||||
. Fixed bug #79014 (PHP-FPM & Primary script unknown). (Jakub Zelenka)
|
||||
|
||||
- MySQLi:
|
||||
. Fixed bug #64032 (mysqli reports different client_version). (cmb)
|
||||
|
||||
- PCRE:
|
||||
. Fixed bug #79188 (Memory corruption in preg_replace/preg_replace_callback
|
||||
and unicode). (Nikita)
|
||||
|
||||
@@ -93,7 +93,7 @@ static int driver_embedded_read(mysqli_object *obj, zval *retval, zend_bool quie
|
||||
/* {{{ property driver_client_version_read */
|
||||
static int driver_client_version_read(mysqli_object *obj, zval *retval, zend_bool quiet)
|
||||
{
|
||||
ZVAL_LONG(retval, MYSQL_VERSION_ID);
|
||||
ZVAL_LONG(retval, mysql_get_client_version());
|
||||
|
||||
return SUCCESS;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user