mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-25 01:13:25 +01:00
restore 46615 with fixed owner issue
This commit is contained in:
parent
b202499f4e
commit
e65d95fdee
@ -1929,7 +1929,7 @@ window.egw_LAB.wait(function() {
|
||||
}
|
||||
else
|
||||
{
|
||||
$content['owner'] = $state['filter'];
|
||||
$content['owner'] = (string)$state['filter'];
|
||||
}
|
||||
$content['private'] = (int) ($content['owner'] && substr($content['owner'],-1) == 'p');
|
||||
if ($content['owner'] === '' || !($this->grants[$content['owner'] = (string) (int) $content['owner']] & EGW_ACL_ADD))
|
||||
@ -1950,7 +1950,47 @@ window.egw_LAB.wait(function() {
|
||||
$content['tid'] = $_GET['typeid'] ? $_GET['typeid'] : ($active_tid?$active_tid:$new_type[0]);
|
||||
foreach($this->get_contact_columns() as $field)
|
||||
{
|
||||
if ($_GET['presets'][$field]) $content[$field] = $_GET['presets'][$field];
|
||||
if ($_GET['presets'][$field])
|
||||
{
|
||||
if ($field=='email'||$field=='email_home')
|
||||
{
|
||||
$singleAddress = imap_rfc822_parse_adrlist($_GET['presets'][$field],'');
|
||||
//error_log(__METHOD__.__LINE__.' Address:'.$singleAddress[0]->mailbox."@".$singleAddress[0]->host.", ".$singleAddress[0]->personal);
|
||||
if (!(!is_array($singleAddress) || count($singleAddress)<1))
|
||||
{
|
||||
$content[$field] = $singleAddress[0]->mailbox."@".$singleAddress[0]->host;
|
||||
if (!empty($singleAddress[0]->personal))
|
||||
{
|
||||
if (strpos($singleAddress[0]->personal,',')===false)
|
||||
{
|
||||
list($P_n_given,$P_n_family,$P_org_name)=explode(' ',$singleAddress[0]->personal,3);
|
||||
if (strlen(trim($P_n_given))>0) $content['n_given'] = trim($P_n_given);
|
||||
if (strlen(trim($P_n_family))>0) $content['n_family'] = trim($P_n_family);
|
||||
if (strlen(trim($P_org_name))>0) $content['org_name'] = trim($P_org_name);
|
||||
}
|
||||
else
|
||||
{
|
||||
list($P_n_family,$P_other)=explode(',',$singleAddress[0]->personal,2);
|
||||
if (strlen(trim($P_n_family))>0) $content['n_family'] = trim($P_n_family);
|
||||
if (strlen(trim($P_other))>0)
|
||||
{
|
||||
list($P_n_given,$P_org_name)=explode(',',$P_other,2);
|
||||
if (strlen(trim($P_n_given))>0) $content['n_given'] = trim($P_n_given);
|
||||
if (strlen(trim($P_org_name))>0) $content['org_name'] = trim($P_org_name);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
$content[$field] = $_GET['presets'][$field];
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
$content[$field] = $_GET['presets'][$field];
|
||||
}
|
||||
}
|
||||
}
|
||||
if (isset($_GET['presets']))
|
||||
{
|
||||
@ -1962,10 +2002,12 @@ window.egw_LAB.wait(function() {
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (empty($content['n_fn'])) $content['n_fn'] = $this->fullname($content);
|
||||
}
|
||||
$content['creator'] = $this->user;
|
||||
$content['created'] = $this->now_su;
|
||||
unset($state);
|
||||
//_debug_array($content);
|
||||
}
|
||||
|
||||
if ($_GET['msg']) $content['msg'] = strip_tags($_GET['msg']); // dont allow HTML!
|
||||
|
Loading…
Reference in New Issue
Block a user