Skip to content
Snippets Groups Projects
Commit 667d0da7 authored by Prasad's avatar Prasad
Browse files

Disabled mysqli no-index warnings during install

parent f791cbb1
No related branches found
No related tags found
No related merge requests found
...@@ -358,7 +358,7 @@ class Install_Utils_Model { ...@@ -358,7 +358,7 @@ class Install_Utils_Model {
if($db_type) { if($db_type) {
// Backward compatible mode for adodb library. // Backward compatible mode for adodb library.
if ($db_type == 'mysqli') { if ($db_type == 'mysqli') {
mysqli_report(MYSQLI_REPORT_ALL ^ MYSQLI_REPORT_STRICT); mysqli_report(MYSQLI_REPORT_ALL ^ MYSQLI_REPORT_STRICT ^ MYSQLI_REPORT_INDEX);
} }
$conn = NewADOConnection($db_type); $conn = NewADOConnection($db_type);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment