Plugin Directory

Changeset 2716477


Ignore:
Timestamp:
04/29/2022 07:24:07 PM (4 years ago)
Author:
vnsavage
Message:

For PHP 8.1 we need to set MYSQLI_REPORT_OFF because we check for errors separately ourselves

File:
1 edited

Legend:

Unmodified
Added
Removed
  • hyperdb/trunk/db.php

    r2625068 r2716477  
    235235
    236236        $this->use_mysqli = $this->should_use_mysqli();
     237        if ( $this->use_mysqli ) {
     238            mysqli_report( MYSQLI_REPORT_OFF );
     239        }
    237240
    238241        $this->init_charset();
Note: See TracChangeset for help on using the changeset viewer.