mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-25 16:18:57 +01:00
pgsql fix for empty var
This commit is contained in:
parent
2232fae0a6
commit
18f7b1e05f
@ -245,7 +245,7 @@
|
|||||||
|
|
||||||
$id = $this->db->f(0);
|
$id = $this->db->f(0);
|
||||||
|
|
||||||
$this->db->query("SELECT id,lid,tid,owner,access,cat_id $t_fields FROM $this->std_table WHERE id='$id'",__LINE__,__FILE__);
|
$this->db->query("SELECT id,lid,tid,owner,access,cat_id $t_fields FROM $this->std_table WHERE id='" . intval($id) . "'",__LINE__,__FILE__);
|
||||||
$this->db->next_record();
|
$this->db->next_record();
|
||||||
|
|
||||||
$return_fields[0]['id'] = $this->db->f('id');
|
$return_fields[0]['id'] = $this->db->f('id');
|
||||||
|
Loading…
Reference in New Issue
Block a user