]> git.mxchange.org Git - friendica.git/blobdiff - src/Object/Thread.php
Remove duplicate profile_uid key in App->profile array
[friendica.git] / src / Object / Thread.php
index 35f155ee1c915682d7419ec118b97d2c3e54485d..0d0def06120927c00b57f664b9494316b2af2cd4 100644 (file)
@@ -4,7 +4,6 @@
  */
 namespace Friendica\Object;
 
-use Friendica\BaseObject;
 use Friendica\Core\Logger;
 use Friendica\Core\Protocol;
 use Friendica\DI;
@@ -16,7 +15,7 @@ use Friendica\Util\Security;
  *
  * We should think about making this a SPL Iterator
  */
-class Thread extends BaseObject
+class Thread
 {
        private $parents = [];
        private $mode = null;
@@ -62,7 +61,7 @@ class Thread extends BaseObject
                                $this->writable = true;
                                break;
                        case 'profile':
-                               $this->profile_owner = $a->profile['profile_uid'];
+                               $this->profile_owner = $a->profile['uid'];
                                $this->writable = Security::canWriteToUserWall($this->profile_owner);
                                break;
                        case 'display':