Don't LIMIT updates to 1. Props hailin. fixes #7272
git-svn-id: http://svn.automattic.com/wordpress/trunk@8311 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
f9f960b1d0
commit
72295536c2
|
@ -685,7 +685,8 @@ class wpdb {
|
||||||
$wheres[] = "$c = '" . $this->escape( $v ) . "'";
|
$wheres[] = "$c = '" . $this->escape( $v ) . "'";
|
||||||
else
|
else
|
||||||
return false;
|
return false;
|
||||||
return $this->query( "UPDATE $table SET " . implode( ', ', $bits ) . ' WHERE ' . implode( ' AND ', $wheres ) . ' LIMIT 1' );
|
|
||||||
|
return $this->query( "UPDATE $table SET " . implode( ', ', $bits ) . ' WHERE ' . implode( ' AND ', $wheres ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue