change user attribute from private to protected so subclasses can use it

This commit is contained in:
Evan Prodromou 2010-09-15 07:08:28 -04:00
parent a881ce23e7
commit d2877f4c3d
1 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ if (!defined('STATUSNET'))
*/
class AtomUserNoticeFeed extends AtomNoticeFeed
{
private $user;
protected $user;
/**
* Constructor
@ -90,7 +90,7 @@ class AtomUserNoticeFeed extends AtomNoticeFeed
array('nickname' => $user->nickname)
)
);
$self = common_local_url('ApiTimelineUser',
array('id' => $user->id,
'format' => 'atom'));