Make WordPress Core

Ticket #54560: wp-db.php.diff

File wp-db.php.diff, 708 bytes (added by jeffstieler, 3 years ago)
  • src/wp-includes/wp-db.php

     
    27982798         */
    27992799        public function get_results( $query = null, $output = OBJECT ) {
    28002800                $this->func_call = "\$db->get_results(\"$query\", $output)";
     2801                $query_success   = false;
    28012802
    28022803                if ( $query ) {
    28032804                        if ( $this->check_current_query && $this->check_safe_collation( $query ) ) {
     
    28042805                                $this->check_current_query = false;
    28052806                        }
    28062807
    2807                         $this->query( $query );
    2808                 } else {
     2808                        $query_success = $this->query( $query );
     2809                }
     2810
     2811                if ( false === $query_success ) {
    28092812                        return null;
    28102813                }
    28112814