gnu-social/lib/subscriptionslist.php
2016-01-06 01:30:12 +01:00

14 lines
306 B
PHP

<?php
if (!defined('GNUSOCIAL')) { exit(1); }
// XXX SubscriptionsList and SubscriptionList are dangerously close
class SubscriptionsList extends SubscriptionList
{
function newListItem(Profile $profile)
{
return new SubscriptionsListItem($profile, $this->owner, $this->action);
}
}