install/install.php: disable MySQLi error suppression by default with a note
install/install.php: disable MySQLi error suppression by default with a note

--- a/install/install.php
+++ b/install/install.php
@@ -24,9 +24,10 @@
 
 /**
  * Revert PHP 8.1 mysqli default error mode
+ * commented out by default - uncomment if you run into any db related issues with this file
  * @link https://github.com/php/php-src/blob/4025cf2875f895e9f7193cebb1c8efa4290d052e/UPGRADING#L101-L105
  */
-mysqli_report(MYSQLI_REPORT_OFF);
+// mysqli_report(MYSQLI_REPORT_OFF);
 
 
 function random_char($string)