mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-23 23:29:31 +01:00
check smtp/imap plugins from all apps, not only the ones user has permissions for
This commit is contained in:
parent
1bcbeb51ed
commit
80fff2e714
@ -503,7 +503,7 @@
|
||||
{
|
||||
$retData[$key] = $value['description'];
|
||||
}
|
||||
foreach($GLOBALS['egw']->hooks->process('smtp_server_types') as $app => $data)
|
||||
foreach($GLOBALS['egw']->hooks->process('smtp_server_types',array(),true) as $app => $data)
|
||||
{
|
||||
if ($data) $retData += $data;
|
||||
}
|
||||
@ -536,7 +536,7 @@
|
||||
foreach($GLOBALS['egw']->hooks->process(array(
|
||||
'location' => 'imap_server_types',
|
||||
'extended' => $extended,
|
||||
)) as $app => $data)
|
||||
),array(),true) as $app => $data)
|
||||
{
|
||||
if ($data) $retData += $data;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user