diff options
author | Zach Copley <zach@status.net> | 2009-10-09 16:57:22 -0700 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2009-10-09 16:57:22 -0700 |
commit | 743c844084bae75db02570d76694f4e9b79a9aa9 (patch) | |
tree | b1a4254c092a10777aec3688024dd2d48f9916b9 /actions/apitimelinefavorites.php | |
parent | f746993c2bfb674d397cf095a2ab2ff7e757818b (diff) |
Move all basic auth output and processing to base classes
Diffstat (limited to 'actions/apitimelinefavorites.php')
-rw-r--r-- | actions/apitimelinefavorites.php | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/actions/apitimelinefavorites.php b/actions/apitimelinefavorites.php index 9ccee5cfa..35a996c9c 100644 --- a/actions/apitimelinefavorites.php +++ b/actions/apitimelinefavorites.php @@ -69,12 +69,6 @@ class ApiTimelineFavoritesAction extends ApiBareAuthAction { parent::prepare($args); - if ($this->requiresAuth()) { - if ($this->checkBasicAuthUser() == false) { - return; - } - } - $this->page = (int)$this->arg('page', 1); $this->count = (int)$this->arg('count', 20); $this->max_id = (int)$this->arg('max_id', 0); |