X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fconnectedappslist.php;h=c2a27e75a83c72692068bf2e37ae02269be2dee6;hb=a7df79ac073d3d6dad13cc0fa3cd1224c9bde933;hp=7e5eb7482cd91edf1c9d8188c5533bb9fe50c952;hpb=673bef2fdae9db750f4daf5bfe7d639eb2ec2acc;p=quix0rs-gnu-social.git diff --git a/lib/connectedappslist.php b/lib/connectedappslist.php index 7e5eb7482c..c2a27e75a8 100644 --- a/lib/connectedappslist.php +++ b/lib/connectedappslist.php @@ -46,18 +46,14 @@ class ConnectedAppsList extends Widget /** Owner of this list */ var $owner = null; - /** Action object using us. */ - var $action = null; - - function __construct($connection, $owner=null, $action=null) + function __construct($connection, Profile $owner, Action $out=null) { - parent::__construct($action); + parent::__construct($out); common_debug("ConnectedAppsList constructor"); $this->connection = $connection; - $this->owner = $owner; - $this->action = $action; + $this->owner = $owner; } /* Override this in subclasses. */