From 85661a35f01604d8180eb20370803ce039c4c5a7 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Sun, 30 Jul 2023 14:58:46 +0200 Subject: [PATCH] Remove `mysqli.reconnect` from php.ini files (#11836) The `mysqli.reconnect` ini directive was removed in PHP 8.2.0. --- php.ini-development | 3 --- php.ini-production | 3 --- 2 files changed, 6 deletions(-) diff --git a/php.ini-development b/php.ini-development index 62320e36e06..61cd33e8950 100644 --- a/php.ini-development +++ b/php.ini-development @@ -1201,9 +1201,6 @@ mysqli.default_user = ; https://php.net/mysqli.default-pw mysqli.default_pw = -; Allow or prevent reconnect -mysqli.reconnect = Off - ; If this option is enabled, closing a persistent connection will rollback ; any pending transactions of this connection, before it is put back ; into the persistent connection pool. diff --git a/php.ini-production b/php.ini-production index cb36654a726..2189660c02c 100644 --- a/php.ini-production +++ b/php.ini-production @@ -1203,9 +1203,6 @@ mysqli.default_user = ; https://php.net/mysqli.default-pw mysqli.default_pw = -; Allow or prevent reconnect -mysqli.reconnect = Off - ; If this option is enabled, closing a persistent connection will rollback ; any pending transactions of this connection, before it is put back ; into the persistent connection pool.