Make the SAVEQUERIES define more flexible. Fixes #6764 props filosofo.
git-svn-id: http://svn.automattic.com/wordpress/trunk@8134 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
f325f82a4d
commit
16126b67e4
|
@ -11,9 +11,6 @@ define('OBJECT_K', 'OBJECT_K', false);
|
||||||
define('ARRAY_A', 'ARRAY_A', false);
|
define('ARRAY_A', 'ARRAY_A', false);
|
||||||
define('ARRAY_N', 'ARRAY_N', false);
|
define('ARRAY_N', 'ARRAY_N', false);
|
||||||
|
|
||||||
if (!defined('SAVEQUERIES'))
|
|
||||||
define('SAVEQUERIES', false);
|
|
||||||
|
|
||||||
class wpdb {
|
class wpdb {
|
||||||
|
|
||||||
var $show_errors = false;
|
var $show_errors = false;
|
||||||
|
@ -279,13 +276,13 @@ class wpdb {
|
||||||
$this->last_query = $query;
|
$this->last_query = $query;
|
||||||
|
|
||||||
// Perform the query via std mysql_query function..
|
// Perform the query via std mysql_query function..
|
||||||
if (SAVEQUERIES)
|
if ( defined('SAVEQUERIES') && SAVEQUERIES )
|
||||||
$this->timer_start();
|
$this->timer_start();
|
||||||
|
|
||||||
$this->result = @mysql_query($query, $this->dbh);
|
$this->result = @mysql_query($query, $this->dbh);
|
||||||
++$this->num_queries;
|
++$this->num_queries;
|
||||||
|
|
||||||
if (SAVEQUERIES)
|
if ( defined('SAVEQUERIES') && SAVEQUERIES )
|
||||||
$this->queries[] = array( $query, $this->timer_stop(), $this->get_caller() );
|
$this->queries[] = array( $query, $this->timer_stop(), $this->get_caller() );
|
||||||
|
|
||||||
// If there is an error then take note of it..
|
// If there is an error then take note of it..
|
||||||
|
|
Loading…
Reference in New Issue