forked from extern/egroupware
fixing the fix ... (db-name is in key, not value)
This commit is contained in:
parent
53400c27f0
commit
dca785709f
@ -368,7 +368,7 @@ class addressbook_sql extends so_sql_cf
|
|||||||
if (strpos($column,'.') === false)
|
if (strpos($column,'.') === false)
|
||||||
{
|
{
|
||||||
$table = $column == $this->extra_value ? $this->extra_table : $this->table_name;
|
$table = $column == $this->extra_value ? $this->extra_table : $this->table_name;
|
||||||
if (in_array($column, $this->db_cols))
|
if (isset($this->db_cols[$column]))
|
||||||
{
|
{
|
||||||
$table .= '.';
|
$table .= '.';
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user