diff --git a/LICENSE b/LICENSE index 0482bd8..d64473a 100644 --- a/LICENSE +++ b/LICENSE @@ -187,7 +187,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2016-2017 Lukas Metzger + Copyright 2016-2018 Lukas Metzger Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/backend/src/controllers/Remote.php b/backend/src/controllers/Remote.php index e4c6102..cdcb082 100644 --- a/backend/src/controllers/Remote.php +++ b/backend/src/controllers/Remote.php @@ -73,8 +73,8 @@ class Remote $this->logger->debug('User tried to update non existent record via changekey api.'); return $res->withJson(['error' => 'The given record does not exist.'], 404); } catch (\Exceptions\ForbiddenException $e) { - $this->logger->debug('User tried to update an record via changekey api with incorrect password.'); - return $res->withJson(['error' => 'The provided password was invalid.'], 403); + $this->logger->debug('User tried to update an record via changekey api with incorrect signature.'); + return $res->withJson(['error' => 'The provided signature was invalid.'], 403); } $this->logger->info('Record ' . $record . ' was changed via the changekey api.');