}
if ($subscribers) {
- $subscribers_list = new SubscribersList($subscribers, $this->target, $this);
+ $subscribers_list = new SubscribersList($subscribers, $this->target->getUser(), $this);
$cnt = $subscribers_list->show();
if (0 == $cnt) {
$this->showEmptyListMessage();
}
if ($subscriptions) {
- $subscriptions_list = new SubscriptionsList($subscriptions, $this->target, $this);
+ $subscriptions_list = new SubscriptionsList($subscriptions, $this->target->getUser(), $this);
$cnt = $subscriptions_list->show();
if (0 == $cnt) {
$this->showEmptyListMessage();
define('GNUSOCIAL_ENGINE', 'GNU social');
define('GNUSOCIAL_ENGINE_URL', 'https://www.gnu.org/software/social/');
-define('GNUSOCIAL_BASE_VERSION', '1.20.3');
+define('GNUSOCIAL_BASE_VERSION', '1.20.4');
define('GNUSOCIAL_LIFECYCLE', 'release'); // 'dev', 'alpha[0-9]+', 'beta[0-9]+', 'rc[0-9]+', 'release'
define('GNUSOCIAL_VERSION', GNUSOCIAL_BASE_VERSION . '-' . GNUSOCIAL_LIFECYCLE);
/** Action object using us. */
var $action = null;
- function __construct($profile, HTMLOutputter $action=null)
+ function __construct($profile, HTMLOutputter $action = null)
{
parent::__construct($action);
/** Owner of this list */
var $owner = null;
- public function __construct($profile, $owner=null, $action=null)
+ public function __construct($profile, $owner = null, $action = null)
{
parent::__construct($profile, $action);