diff options
author | Zach Copley <zach@status.net> | 2009-11-04 22:03:41 -0800 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2009-11-04 22:03:41 -0800 |
commit | 1ef1f59fe8ec8c3fd012838cfe0d20051287c2d6 (patch) | |
tree | 079a971ea2788fa4d97d417672c22ec0c4c80788 /actions/apitimelinegroup.php | |
parent | fbeae998840fb58ac2fbb8779f14eb2abe74cd08 (diff) |
Fix for Ticket #1957 - API methods are not accessible when site is private (0.8->0.9 regression)
Diffstat (limited to 'actions/apitimelinegroup.php')
-rw-r--r-- | actions/apitimelinegroup.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/apitimelinegroup.php b/actions/apitimelinegroup.php index 5d0542918..f25f6ba51 100644 --- a/actions/apitimelinegroup.php +++ b/actions/apitimelinegroup.php @@ -34,7 +34,7 @@ if (!defined('STATUSNET')) { exit(1); } -require_once INSTALLDIR . '/lib/api.php'; +require_once INSTALLDIR . '/lib/apiprivateauth.php'; /** * Returns the most recent notices (default 20) posted to the group specified by ID @@ -49,7 +49,7 @@ require_once INSTALLDIR . '/lib/api.php'; * @link http://status.net/ */ -class ApiTimelineGroupAction extends ApiAction +class ApiTimelineGroupAction extends ApiPrivateAuthAction { var $group = null; |