Make aurjson error messages consistent

All error messages in aurjson except two end with a period. Add the
missing periods to make the messages consistent.

Signed-off-by: Michael Straube <straubem@gmx.de>
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
This commit is contained in:
Michael Straube 2017-02-14 20:17:11 +01:00 committed by Lukas Fleischer
parent 9df1bd5fe2
commit f4176a8ce1

View file

@ -387,7 +387,7 @@ class AurJSON {
if ($search_by === 'name' || $search_by === 'name-desc') {
if (strlen($keyword_string) < 2) {
return $this->json_error('Query arg too small');
return $this->json_error('Query arg too small.');
}
$keyword_string = $this->dbh->quote("%" . addcslashes($keyword_string, '%_') . "%");
@ -441,7 +441,7 @@ class AurJSON {
$names = $args['names'];
if (!$ids && !$names) {
return $this->json_error('Invalid query arguments');
return $this->json_error('Invalid query arguments.');
}
$where_condition = "";