forked from GNUsocial/gnu-social
Avoid undefined variables.
This commit is contained in:
parent
e006b73505
commit
48680942fd
@ -134,12 +134,17 @@ class ApiTimelineUserAction extends ApiBareAuthAction
|
|||||||
'id' => $this->target->id),
|
'id' => $this->target->id),
|
||||||
array('max_id' => $this->next_id))
|
array('max_id' => $this->next_id))
|
||||||
: null;
|
: null;
|
||||||
$lastNotice = $this->notices[0];
|
|
||||||
$lastId = $lastNotice->id;
|
$prevExtra = array();
|
||||||
|
if (!empty($this->notices)) {
|
||||||
|
assert($this->notices[0] instanceof Notice);
|
||||||
|
$prevExtra['since_id'] = $this->notices[0]->id;
|
||||||
|
}
|
||||||
|
|
||||||
$prevUrl = common_local_url('ApiTimelineUser',
|
$prevUrl = common_local_url('ApiTimelineUser',
|
||||||
array('format' => $this->format,
|
array('format' => $this->format,
|
||||||
'id' => $this->target->id),
|
'id' => $this->target->id),
|
||||||
array('since_id' => $lastId));
|
$prevExtra);
|
||||||
$firstUrl = common_local_url('ApiTimelineUser',
|
$firstUrl = common_local_url('ApiTimelineUser',
|
||||||
array('format' => $this->format,
|
array('format' => $this->format,
|
||||||
'id' => $this->target->id));
|
'id' => $this->target->id));
|
||||||
|
Loading…
Reference in New Issue
Block a user