subscriptionslist.php 306 B

1234567891011121314
  1. <?php
  2. if (!defined('GNUSOCIAL')) { exit(1); }
  3. // XXX SubscriptionsList and SubscriptionList are dangerously close
  4. class SubscriptionsList extends SubscriptionList
  5. {
  6. function newListItem(Profile $profile)
  7. {
  8. return new SubscriptionsListItem($profile, $this->owner, $this->action);
  9. }
  10. }