Skip to content
Snippets Groups Projects
Commit e6524741 authored by Guillaume Heurtier's avatar Guillaume Heurtier
Browse files

FEAT #12091 TIME 0:05 small fixes

parent 9e97d825
No related branches found
No related tags found
No related merge requests found
...@@ -1241,7 +1241,7 @@ class ResController extends ResourceControlController ...@@ -1241,7 +1241,7 @@ class ResController extends ResourceControlController
public function getResourceFileInformation(Request $request, Response $response, array $args) public function getResourceFileInformation(Request $request, Response $response, array $args)
{ {
if (!ResController::hasRightByResId(['resId' => [$args['resId']], 'userId' => $GLOBALS['id']])) { if (!Validator::intVal()->validate($args['resId']) || !ResController::hasRightByResId(['resId' => [$args['resId']], 'userId' => $GLOBALS['id']])) {
return $response->withStatus(403)->withJson(['errors' => 'Document out of perimeter']); return $response->withStatus(403)->withJson(['errors' => 'Document out of perimeter']);
} }
......
...@@ -71,7 +71,7 @@ class TagController ...@@ -71,7 +71,7 @@ class TagController
'data' => [$tag['id']] 'data' => [$tag['id']]
]); ]);
$tag['canMerge'] = empty($tag['parent_id']) && empty($childTags[0]['count']); $tag['canMerge'] = empty($tag['parent_id']) && empty($childTags);
return $response->withJson($tag); return $response->withJson($tag);
} }
......
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