If you don't have anything nice to say, don't say anything at all. (And certainly don't return the results of a previous query to an empty query.)

git-svn-id: http://svn.automattic.com/wordpress/trunk@5858 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
matt 2007-08-10 01:33:56 +00:00
parent b64ce2d0f0
commit 0311e61389
1 changed files with 8 additions and 0 deletions

View File

@ -260,6 +260,8 @@ class wpdb {
$this->func_call = "\$db->get_var(\"$query\",$x,$y)";
if ( $query )
$this->query($query);
else
return null;
// Extract var out of cached results based x,y vals
if ( $this->last_result[$y] ) {
@ -281,6 +283,8 @@ class wpdb {
$this->func_call = "\$db->get_row(\"$query\",$output,$y)";
if ( $query )
$this->query($query);
else
return null;
if ( !isset($this->last_result[$y]) )
return null;
@ -305,6 +309,8 @@ class wpdb {
function get_col($query = null , $x = 0) {
if ( $query )
$this->query($query);
else
return null;
// Extract the column values
for ( $i=0; $i < count($this->last_result); $i++ ) {
@ -324,6 +330,8 @@ class wpdb {
if ( $query )
$this->query($query);
else
return null;
// Send back array of objects. Each row is an object
if ( $output == OBJECT ) {