[CORE] Fix subscriptions and subscribers list (related to 44653d339d)

This commit is contained in:
Diogo Cordeiro 2019-06-24 14:01:37 +01:00
parent 44653d339d
commit 83a05724b8
5 changed files with 5 additions and 5 deletions

View File

@ -92,7 +92,7 @@ class SubscribersAction extends GalleryAction
}
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();

View File

@ -96,7 +96,7 @@ class SubscriptionsAction extends GalleryAction
}
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();

View File

@ -32,7 +32,7 @@ defined('GNUSOCIAL') || die();
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);

View File

@ -46,7 +46,7 @@ class ProfileList extends Widget
/** Action object using us. */
var $action = null;
function __construct($profile, HTMLOutputter $action=null)
function __construct($profile, HTMLOutputter $action = null)
{
parent::__construct($action);

View File

@ -44,7 +44,7 @@ class SubscriptionList extends ProfileList
/** 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);