Changeset 19060 for trunk/wp-includes/wp-db.php
- Timestamp:
- 10/25/2011 05:29:28 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/wp-db.php
r18998 r19060 460 460 */ 461 461 var $func_call; 462 463 /** 464 * Whether MySQL is used as the database engine. 465 * 466 * Set in WPDB::db_connect() to true, by default. This is used when checking 467 * against the required MySQL version for WordPress. Normally, a replacement 468 * database drop-in (db.php) will skip these checks, but setting this to true 469 * will force the checks to occur. 470 * 471 * @since 3.3.0 472 * @access public 473 * @var bool 474 */ 475 public $is_mysql = null; 462 476 463 477 /** … … 1016 1030 */ 1017 1031 function db_connect() { 1032 1033 $this->is_mysql = true; 1034 1018 1035 if ( WP_DEBUG ) { 1019 1036 $this->dbh = mysql_connect( $this->dbhost, $this->dbuser, $this->dbpassword, true );
Note: See TracChangeset
for help on using the changeset viewer.