Even though error_reporting is set to 0, database errors are still being printed to screen. Is there a setting somewhere I can change to disable database error reporting? This i
In addition to Ian's answer, to temporarily disable the error messages:
$db_debug = $this->db->db_debug; $this->db->db_debug = false; // Do your sketchy stuff here $this->db->db_debug = $db_debug;