Skip to content

Commit 9d1c7f8

Browse files
committed
Merge branch 'PHP-7.3' into PHP-7.4
* PHP-7.3: Fix mysqli build with mysqlnd and without PDO
2 parents f231645 + a754441 commit 9d1c7f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/mysqli/mysqli_api.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1941,7 +1941,7 @@ PHP_FUNCTION(mysqli_real_query)
19411941
}
19421942
/* }}} */
19431943

1944-
#if defined(PDO_USE_MYSQLND) || MYSQL_VERSION_ID < 50707 || defined(MARIADB_BASE_VERSION)
1944+
#if defined(MYSQLI_USE_MYSQLND) || MYSQL_VERSION_ID < 50707 || defined(MARIADB_BASE_VERSION)
19451945
# define mysql_real_escape_string_quote(mysql, to, from, length, quote) \
19461946
mysql_real_escape_string(mysql, to, from, length)
19471947
#endif

0 commit comments

Comments
 (0)