]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/groupmemberlist.php
XSS vulnerability when remote-subscribing
[quix0rs-gnu-social.git] / lib / groupmemberlist.php
1 <?php
2 // @todo FIXME: add documentation.
3
4 class GroupMemberList extends ProfileList
5 {
6     var $group = null;
7
8     function __construct($profile, $group, $action)
9     {
10         parent::__construct($profile, $action);
11
12         $this->group = $group;
13     }
14
15     function newListItem($profile)
16     {
17         return new GroupMemberListItem($profile, $this->group, $this->action);
18     }
19 }