You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/**
* Special method to query the table by its primary key.
*
* If primary key is compound, only the columns that
* belong to they key will be used for the query
*/
public function having_id_is($id) {
return (is_array($this->_get_id_column_name())) ?
$this->having($this->_get_compound_id_column_values($value)) :
$this->having($this->_get_id_column_name(), $id);
}
there is a reference to an undefined variable $value
The text was updated successfully, but these errors were encountered:
maboiteaspam
changed the title
having_id_is
having_id_is reference undefiend variable $value
Jun 26, 2014
hi,
in
there is a reference to an undefined variable $value
The text was updated successfully, but these errors were encountered: