mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-04 20:40:14 +01:00
try translating default group descriptions on read, in case they are not translated
This commit is contained in:
parent
381b9fa1a4
commit
6deedce782
@ -277,7 +277,7 @@ class Accounts
|
|||||||
foreach($account_search[$serial]['data'] as &$account)
|
foreach($account_search[$serial]['data'] as &$account)
|
||||||
{
|
{
|
||||||
// add default description for Admins and Default group
|
// add default description for Admins and Default group
|
||||||
if ($account['account_type'] === 'g' && empty($account['account_description']))
|
if ($account['account_type'] === 'g')
|
||||||
{
|
{
|
||||||
self::add_default_group_description($account);
|
self::add_default_group_description($account);
|
||||||
}
|
}
|
||||||
@ -379,7 +379,7 @@ class Accounts
|
|||||||
$data = self::cache_read($id);
|
$data = self::cache_read($id);
|
||||||
|
|
||||||
// add default description for Admins and Default group
|
// add default description for Admins and Default group
|
||||||
if ($data['account_type'] === 'g' && empty($data['account_description']))
|
if ($data['account_type'] === 'g')
|
||||||
{
|
{
|
||||||
self::add_default_group_description($data);
|
self::add_default_group_description($data);
|
||||||
}
|
}
|
||||||
@ -552,6 +552,8 @@ class Accounts
|
|||||||
* @param array &$data
|
* @param array &$data
|
||||||
*/
|
*/
|
||||||
protected static function add_default_group_description(array &$data)
|
protected static function add_default_group_description(array &$data)
|
||||||
|
{
|
||||||
|
if (empty($data['account_description']))
|
||||||
{
|
{
|
||||||
switch($data['account_lid'])
|
switch($data['account_lid'])
|
||||||
{
|
{
|
||||||
@ -566,6 +568,11 @@ class Accounts
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$data['account_description'] = lang($data['account_description']);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Saves / adds the data of one account
|
* Saves / adds the data of one account
|
||||||
|
Loading…
Reference in New Issue
Block a user