From: Mikael Nordfeldth Date: Sat, 22 Nov 2014 11:29:13 +0000 (+0100) Subject: Report a 404 not found if no posts found for User timeline X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=5295e8d4de9c20ee06c3219669f5824c492478f9;p=quix0rs-gnu-social.git Report a 404 not found if no posts found for User timeline --- diff --git a/actions/apitimelineuser.php b/actions/apitimelineuser.php index b105a29dd1..aa6cfca458 100644 --- a/actions/apitimelineuser.php +++ b/actions/apitimelineuser.php @@ -252,6 +252,11 @@ class ApiTimelineUserAction extends ApiBareAuthAction } } + if (empty($notices)) { + // TRANS: When no posts were found with specific or default parameters + $this->clientError(_('Did not find any posts within search parameters'), 404); + } + return $notices; }