Jump to content

Some (BUG?) in 2.3.1 function do_update()


Guest out.lov

Recommended Posts

Posted

Well...

in class_db_mysql_client.php --> function do_update()


            if ( ! $this->obj['use_shutdown'] )
            {
                $this->is_shutdown = 1;
                $return = $this->query( $query );
                $this->no_prefix_convert = 0;
                $this->is_shutdown = 0;
                return $return;
            }

in class_db_mysqli_client.php --> function do_update()

            if ( ! $this->obj['use_shutdown'] )
            {
                $this->is_shutdown = 1;
                $return = $this->query( $query );
                $this->no_prefix_convert = 0;
                $this->is_shutdown = 1;
                return $return;
            }





(?) What about $this->is_shutdown = 1; in class_db_mysqli_client.php --> function do_update()

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...