mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 04:29:28 +01:00
* CalDAV/InfoLog: fixed SQL error if client has multiple identical X-properties, eg. alarms
This commit is contained in:
parent
41116cd6fc
commit
4df3295cce
@ -599,7 +599,7 @@ class infolog_so
|
|||||||
if ($val)
|
if ($val)
|
||||||
{
|
{
|
||||||
$this->db->insert($this->extra_table,array(
|
$this->db->insert($this->extra_table,array(
|
||||||
'info_extra_value'=>$val
|
'info_extra_value' => is_array($val) ? serialize($val) : $val,
|
||||||
),array(
|
),array(
|
||||||
'info_id' => $info_id,
|
'info_id' => $info_id,
|
||||||
'info_extra_name' => substr($key,1),
|
'info_extra_name' => substr($key,1),
|
||||||
|
@ -270,7 +270,7 @@
|
|||||||
<description/>
|
<description/>
|
||||||
<description/>
|
<description/>
|
||||||
<description value="Last modified"/>
|
<description value="Last modified"/>
|
||||||
<vbox options="0" orient="0">
|
<vbox options="0">
|
||||||
<menulist>
|
<menulist>
|
||||||
<menupopup type="select-account" id="info_modifier" readonly="true"/>
|
<menupopup type="select-account" id="info_modifier" readonly="true"/>
|
||||||
</menulist>
|
</menulist>
|
||||||
|
Loading…
Reference in New Issue
Block a user