mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 16:48:49 +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)
|
||||
{
|
||||
$this->db->insert($this->extra_table,array(
|
||||
'info_extra_value'=>$val
|
||||
'info_extra_value' => is_array($val) ? serialize($val) : $val,
|
||||
),array(
|
||||
'info_id' => $info_id,
|
||||
'info_extra_name' => substr($key,1),
|
||||
|
@ -270,7 +270,7 @@
|
||||
<description/>
|
||||
<description/>
|
||||
<description value="Last modified"/>
|
||||
<vbox options="0" orient="0">
|
||||
<vbox options="0">
|
||||
<menulist>
|
||||
<menupopup type="select-account" id="info_modifier" readonly="true"/>
|
||||
</menulist>
|
||||
|
Loading…
Reference in New Issue
Block a user