mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-29 03:13:40 +01:00
Try to fix infolog contact and projectmanager links handler
This commit is contained in:
parent
71eba071b1
commit
e9a6ffd87e
@ -1772,6 +1772,11 @@ class infolog_ui
|
|||||||
Framework::refresh_opener($content['msg'],'infolog',$info_id,$operation);
|
Framework::refresh_opener($content['msg'],'infolog',$info_id,$operation);
|
||||||
}
|
}
|
||||||
$content['tabs'] = $active_tab;
|
$content['tabs'] = $active_tab;
|
||||||
|
//try to keep the project manager link if the intenstion is only to remove contact
|
||||||
|
if ($old['info_link']['app'] == 'projectmanager' && $old['info_link']['id'] = $content['pm_id'])
|
||||||
|
{
|
||||||
|
Link::link('infolog',$content['link_to']['to_id'],'projectmanager',$content['pm_id']);
|
||||||
|
}
|
||||||
if ((int) $content['pm_id'] != (int) $content['old_pm_id'])
|
if ((int) $content['pm_id'] != (int) $content['old_pm_id'])
|
||||||
{
|
{
|
||||||
//echo "<p>pm_id changed: $content[old_pm_id] -> $content[pm_id]</p>\n";
|
//echo "<p>pm_id changed: $content[old_pm_id] -> $content[pm_id]</p>\n";
|
||||||
@ -1813,6 +1818,14 @@ class infolog_ui
|
|||||||
);
|
);
|
||||||
//echo "<p>updating info_link_id: ".print_r($to_write,true)."</p>\n";
|
//echo "<p>updating info_link_id: ".print_r($to_write,true)."</p>\n";
|
||||||
$this->bo->write($to_write,False,true,true,true); // last true = no notifications, as no real change
|
$this->bo->write($to_write,False,true,true,true); // last true = no notifications, as no real change
|
||||||
|
|
||||||
|
// Do not override info_contact if is already filled with contact
|
||||||
|
if ($content['info_contact'])
|
||||||
|
{
|
||||||
|
unset($to_write['info_contact']);
|
||||||
|
unset($to_write['blur_title']);
|
||||||
|
}
|
||||||
|
|
||||||
// we need eg. the new modification date, for further updates
|
// we need eg. the new modification date, for further updates
|
||||||
$content = array_merge($content,$to_write);
|
$content = array_merge($content,$to_write);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user