mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-25 09:23:28 +01:00
fixed not working infolog-global configuration:
no more serialize/unserialize of arrays needed
This commit is contained in:
parent
c4318f11af
commit
db368a186d
@ -88,8 +88,8 @@
|
||||
|
||||
if ($this->config->config_data)
|
||||
{
|
||||
$this->link_pathes = unserialize($this->config->config_data['link_pathes']);
|
||||
$this->send_file_ips = unserialize($this->config->config_data['send_file_ips']);
|
||||
$this->link_pathes = $this->config->config_data['link_pathes'];
|
||||
$this->send_file_ips = $this->config->config_data['send_file_ips'];
|
||||
}
|
||||
|
||||
$this->read( $info_id);
|
||||
|
@ -1450,8 +1450,8 @@
|
||||
}
|
||||
}
|
||||
$this->bo->config->config_data = array(
|
||||
'link_pathes' => serialize($this->bo->link_pathes),
|
||||
'send_file_ips' => serialize($this->bo->send_file_ips)
|
||||
'link_pathes' => $this->bo->link_pathes,
|
||||
'send_file_ips' => $this->bo->send_file_ips
|
||||
);
|
||||
$this->bo->config->save_repository(True);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user