forked from extern/egroupware
fixed bug reported by Reinhard Gustavik on the german list: custom status get's not saved and not used
This commit is contained in:
parent
bc13c208fe
commit
b6cc2d6d7b
@ -15,21 +15,6 @@
|
||||
|
||||
class boinfolog // BO: buiseness objects: internal logic
|
||||
{
|
||||
var $public_functions = array
|
||||
(
|
||||
'init' => True, // in class soinfolog
|
||||
'read' => True,
|
||||
'write' => True,
|
||||
'delete' => True,
|
||||
'check_access' => True,
|
||||
'anzSubs' => True,
|
||||
'search' => True,
|
||||
'get_rows' => True,
|
||||
'link_title' => True,
|
||||
'link_query' => True,
|
||||
'link_id2from' => True,
|
||||
'cal_to_include' => True
|
||||
);
|
||||
var $enums;
|
||||
var $so;
|
||||
var $vfs;
|
||||
@ -123,7 +108,7 @@
|
||||
{
|
||||
$this->status[$key] = array();
|
||||
}
|
||||
$this->status[$key] += $this->config->config_data['status'][$key];
|
||||
$this->status[$key] = array_merge($this->status[$key],$this->config->config_data['status'][$key]);
|
||||
}
|
||||
}
|
||||
if (isset($this->config->config_data['types']) && is_array($this->config->config_data['types']))
|
||||
|
@ -431,7 +431,8 @@
|
||||
$content['info_responsible'] = $parent['info_owner'];
|
||||
}
|
||||
*/
|
||||
$content['info_status'] = 'ongoing';
|
||||
$content['info_type'] = $parent['info_type'];
|
||||
$content['info_status'] = $this->bo->status['defaults'][$content['info_type']];
|
||||
$content['info_confirm'] = 'not';
|
||||
$content['info_subject']=lang($this->messages['re']).' '.$parent['info_subject'];
|
||||
$content['info_des'] = '';
|
||||
@ -500,6 +501,7 @@
|
||||
{
|
||||
$content['info_type'] = $type;
|
||||
}
|
||||
$content['info_status'] = $this->bo->status['defaults'][$content['info_type']];
|
||||
break;
|
||||
}
|
||||
$content['link_to']['primary'] = (int)$content['info_link_id'];
|
||||
|
Loading…
Reference in New Issue
Block a user