listStatus($id, $since_id, $max_id); $listInfo = $t->listInfo($id); if ($statuses === false) { header('location: error.php?code='.$t->http_code);exit(); } $isFollower = $t->isFollowedList($id); ?>
No Tweet To Display
"; } else { $output = '
    '; include('lib/timeline_format.php'); $firstid = false; $lastid = false; foreach ($statuses as $status) { if (!$firstid) $firstid = $status->id_str; $lastid = $status->id_str; if (isset($status->retweeted_status)) { $output .= format_retweet($status); } else { $output .= format_timeline($status,$t->username); } } $lastid = bcsub($lastid, "1"); $output .= "
"; $output .= "Back"; $output .= "Next"; $output .= "
"; echo $output; } ?>