Make WordPress Core


Ignore:
Timestamp:
12/22/2007 05:45:30 PM (17 years ago)
Author:
ryan
Message:

Show DB errors if WP_DEBUG and if installing. see #5473

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/wp-db.php

    r6464 r6469  
    5555    function __construct($dbuser, $dbpassword, $dbname, $dbhost) {
    5656        register_shutdown_function(array(&$this, "__destruct"));
     57
     58        if ( defined('WP_DEBUG') and WP_DEBUG == true )
     59            $this->show_errors();
    5760
    5861        if ( defined('DB_CHARSET') )
Note: See TracChangeset for help on using the changeset viewer.