fixed warning if nothing checked in responsible edit

This commit is contained in:
Ralf Becker 2006-11-15 10:33:06 +00:00
parent 00134ab430
commit 4a19aaa1ff

View File

@ -1062,7 +1062,7 @@ class uiinfolog
'link_pathes' => $this->link_pathes, 'link_pathes' => $this->link_pathes,
'send_file_ips' => $this->bo->send_file_ips, 'send_file_ips' => $this->bo->send_file_ips,
'implicit_rights' => $this->bo->implicit_rights, 'implicit_rights' => $this->bo->implicit_rights,
'responsible_edit' => implode(',',$extra), 'responsible_edit' => is_array($extra) ? implode(',',$extra) : $extra,
); );
$this->bo->config->save_repository(True); $this->bo->config->save_repository(True);
} }