forked from extern/egroupware
fixed missing space when adding multiple classes, causing context menu not recognising readonly, if also not deletable
This commit is contained in:
parent
8247d55fc1
commit
b509c6cfbe
@ -697,12 +697,12 @@ class timesheet_ui extends timesheet_bo
|
||||
if (!$this->check_acl(EGW_ACL_EDIT,$row))
|
||||
{
|
||||
$readonlys["edit[$row[ts_id]]"] = true;
|
||||
$row['class'] .= ' rowNoEdit';
|
||||
$row['class'] .= ' rowNoEdit ';
|
||||
}
|
||||
if (!$this->check_acl(EGW_ACL_DELETE,$row))
|
||||
{
|
||||
$readonlys["delete[$row[ts_id]]"] = true;
|
||||
$row['class'] .= ' rowNoDelete';
|
||||
$row['class'] .= ' rowNoDelete ';
|
||||
}
|
||||
if ($query['col_filter']['ts_project'] || !$query['filter2'])
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user