From 1e2463fe0120827334aeda8b171224f8eb197b45 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 The `mysqli.reconnect` ini directive was removed in PHP 8.2.0. Refs: * https://github.com/php/php-src/blob/5d90c5057dbf88cea49ac53daf5f4622c1588a84/UPGRADING#L320 * https://github.com/php/php-src/pull/7889 * https://github.com/php/php-src/pull/7889/commits/be3d55d3111308a085700f2c409684b11d2ceeb0 --- php.ini-development | 3 --- php.ini-production | 3 --- 2 files changed, 6 deletions(-) diff --git a/php.ini-development b/php.ini-development index e3293e8ffa50..00e7abde3628 100644 --- a/php.ini-development +++ b/php.ini-development @@ -1211,9 +1211,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 beebc0461b47..5d87ca3e3bd0 100644 --- a/php.ini-production +++ b/php.ini-production @@ -1213,9 +1213,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.