We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09ec92e commit 7ae16a6Copy full SHA for 7ae16a6
lib/database/sfMySQLiDatabase.class.php
@@ -29,6 +29,9 @@ class sfMySQLiDatabase extends sfMySQLDatabase
29
*/
30
protected function getConnectMethod($persistent)
31
{
32
+ // PHP 8.1 Activate Exception per default, revert behavior to "return false"
33
+ mysqli_report(MYSQLI_REPORT_OFF);
34
+
35
return 'mysqli_connect';
36
}
37
0 commit comments