mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
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:
parent
9df1bd5fe2
commit
f4176a8ce1
1 changed files with 2 additions and 2 deletions
|
@ -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 = "";
|
||||
|
|
Loading…
Add table
Reference in a new issue