mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-23 15:18:58 +01:00
missing lang('not') in previous patch
This commit is contained in:
parent
977acee0eb
commit
2f73293a9c
@ -274,22 +274,22 @@
|
||||
if (isset($args['is_readable']))
|
||||
{
|
||||
$checks[] = lang('readable by the webserver');
|
||||
$check_not = (!$args['is_readable']?'not ':'');
|
||||
$check_not = (!$args['is_readable']?lang('not'):'');
|
||||
}
|
||||
if (isset($args['is_writable']))
|
||||
{
|
||||
$checks[] = lang('writable by the webserver');
|
||||
$check_not = (!$args['is_writable']?'not ':'');
|
||||
$check_not = (!$args['is_writable']?lang('not'):'');
|
||||
}
|
||||
if (isset($args['is_world_readable']))
|
||||
{
|
||||
$checks[] = lang('world readable');
|
||||
$check_not = (!$args['is_world_readable']?lang('not').' ':'');
|
||||
$check_not = (!$args['is_world_readable']?lang('not'):'');
|
||||
}
|
||||
if (isset($args['is_world_writable']))
|
||||
{
|
||||
$checks[] = lang('world writable');
|
||||
$check_not = (!$args['is_world_writable']?lang('not').' ':'');
|
||||
$check_not = (!$args['is_world_writable']?lang('not'):'');
|
||||
}
|
||||
$checks = implode(', ',$checks);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user