Skip to content
Snippets Groups Projects
Commit 3bc785c4 authored by Quentin Ribac's avatar Quentin Ribac
Browse files

FEAT #17671 TIME 0:20 typist field may be empty

parent 2d596833
No related branches found
No related tags found
No related merge requests found
......@@ -1229,11 +1229,7 @@ class DocumentController
$args['withDeleted'] = $args['withDeleted'] ?? false;
$document = DocumentModel::getById(['select' => ['typist'], 'id' => $args['id'], 'withDeleted' => $args['withDeleted']]);
if (empty($document['typist'])) {
return false;
}
if ($document['typist'] == $GLOBALS['id']) {
if (!empty($document['typist']) && $document['typist'] == $GLOBALS['id']) {
return true;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment