Avoid undefined variables.

This commit is contained in:
Mikael Nordfeldth 2014-12-06 19:56:21 +01:00
parent e006b73505
commit 48680942fd
1 changed files with 8 additions and 3 deletions

View File

@ -134,12 +134,17 @@ class ApiTimelineUserAction extends ApiBareAuthAction
'id' => $this->target->id),
array('max_id' => $this->next_id))
: 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',
array('format' => $this->format,
'id' => $this->target->id),
array('since_id' => $lastId));
$prevExtra);
$firstUrl = common_local_url('ApiTimelineUser',
array('format' => $this->format,
'id' => $this->target->id));