CustomvarQuery: Rename baseQuery to select

This commit is contained in:
Eric Lippmann 2014-04-15 17:57:12 +02:00
parent 22fa833836
commit 64bee6a414

View File

@ -21,7 +21,7 @@ class CustomvarQuery extends IdoQuery
protected function joinBaseTables() protected function joinBaseTables()
{ {
$this->baseQuery = $this->db->select()->from( $this->select->from(
array('cvs' => $this->prefix . 'customvariablestatus'), array('cvs' => $this->prefix . 'customvariablestatus'),
array() array()
)->join( )->join(
@ -29,7 +29,6 @@ class CustomvarQuery extends IdoQuery
'cvs.object_id = cvo.object_id AND cvo.is_active = 1', 'cvs.object_id = cvo.object_id AND cvo.is_active = 1',
array() array()
); );
$this->joinedVirtualTables = array( $this->joinedVirtualTables = array(
'customvars' => true, 'customvars' => true,
'objects' => true 'objects' => true