This commit is contained in:
Jeremy Benoist
2024-08-14 16:39:36 +02:00
parent bf329d34d8
commit c6a69e595c
23 changed files with 57 additions and 57 deletions

View File

@ -1088,7 +1088,7 @@ class EntryRestController extends WallabagRestController
{
$expect = $request->query->get('expect', 'entry');
if (!\in_array($expect, ['id', 'entry'], true)) {
throw new BadRequestHttpException(sprintf("expect: 'id' or 'entry' expected, %s given", $expect));
throw new BadRequestHttpException(\sprintf("expect: 'id' or 'entry' expected, %s given", $expect));
}
$this->validateAuthentication();
$this->validateUserAccess($entry->getUser()->getId());