gnu-social/lib/subqueuelist.php
Mikael Nordfeldth c19964094b Pending subscription requests now work as they should
A slight layout issue with the buttons still persists
2016-01-03 20:27:53 +01:00

12 lines
213 B
PHP

<?php
if (!defined('GNUSOCIAL')) { exit(1); }
class SubQueueList extends ProfileList
{
public function newListItem(Profile $target)
{
return new SubQueueListItem($target, $this->action);
}
}