fixed bug reported by Reinhard Gustavik on the german list: custom status get's not saved and not used

This commit is contained in:
Ralf Becker 2005-02-14 10:39:10 +00:00
parent bc13c208fe
commit b6cc2d6d7b
2 changed files with 4 additions and 17 deletions

View File

@ -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']))

View File

@ -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'];