"fixed wrong case in egw_link::VFS_APPNAME, thanks to a report from philipp.kaufmann(at)hosticus.com "

This commit is contained in:
Ralf Becker 2008-06-06 05:28:38 +00:00
parent f4f0470b16
commit 633c76e18a

View File

@ -189,7 +189,7 @@ class uitimesheet extends botimesheet
if (!is_array($content['link_to']['to_id'])) // set links again, so new entry gets the same links as the existing one if (!is_array($content['link_to']['to_id'])) // set links again, so new entry gets the same links as the existing one
{ {
$content['link_to']['to_id'] = 0; $content['link_to']['to_id'] = 0;
foreach(egw_link::get_links(TIMESHEET_APP,$this->data['ts_id'],'!'.egw_link::vfs_appname) as $link) foreach(egw_link::get_links(TIMESHEET_APP,$this->data['ts_id'],'!'.egw_link::VFS_APPNAME) as $link)
{ {
egw_link::link(TIMESHEET_APP,$content['link_to']['to_id'],$link['app'],$link['id'],$link['remark']); egw_link::link(TIMESHEET_APP,$content['link_to']['to_id'],$link['app'],$link['id'],$link['remark']);
} }