Skip to content

Commit 9186675

Browse files
Update ext/mysqli/mysqli_api.c
Co-authored-by: Kamil Tekiela <tekiela246@gmail.com>
1 parent 05fb089 commit 9186675

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
@@ -1958,7 +1958,7 @@ PHP_FUNCTION(mysqli_store_result)
19581958
RETURN_THROWS();
19591959
}
19601960

1961-
if (hasThis() && ZEND_NUM_ARGS() == 1 || ZEND_NUM_ARGS() == 2) {
1961+
if ((hasThis() && ZEND_NUM_ARGS() == 1) || ZEND_NUM_ARGS() == 2) {
19621962
zend_error(E_DEPRECATED, "Passing the $mode parameter is deprecated since 8.4, as it has been ignored since 8.1");
19631963
if (UNEXPECTED(EG(exception))) {
19641964
RETURN_THROWS();

0 commit comments

Comments
 (0)