]> git.mxchange.org Git - friendica.git/blobdiff - src/Object/Thread.php
calculate form return_url for post and message instead of using SESSION var
[friendica.git] / src / Object / Thread.php
index 2872fe4a024ae6e5aafca808d3d4f111abde89bd..cd055ee5ebfa4e17eb4cf963219afaca2bfabdd2 100644 (file)
@@ -5,6 +5,7 @@
 namespace Friendica\Object;
 
 use Friendica\BaseObject;
+use Friendica\Core\Protocol;
 use Friendica\Object\Post;
 
 require_once 'boot.php';
@@ -17,7 +18,7 @@ require_once 'include/text.php';
  */
 class Thread extends BaseObject
 {
-       private $parents = array();
+       private $parents = [];
        private $mode = null;
        private $writable = false;
        private $profile_owner = 0;
@@ -60,11 +61,19 @@ class Thread extends BaseObject
                                break;
                        case 'profile':
                                $this->profile_owner = $a->profile['profile_uid'];
-                               $this->writable = can_write_wall($a, $this->profile_owner);
+                               $this->writable = can_write_wall($this->profile_owner);
                                break;
                        case 'display':
                                $this->profile_owner = $a->profile['uid'];
-                               $this->writable = can_write_wall($a, $this->profile_owner) || $writable;
+                               $this->writable = can_write_wall($this->profile_owner) || $writable;
+                               break;
+                       case 'community':
+                               $this->profile_owner = 0;
+                               $this->writable = $writable;
+                               break;
+                       case 'contacts':
+                               $this->profile_owner = 0;
+                               $this->writable = $writable;
                                break;
                        default:
                                logger('[ERROR] Conversation::setMode : Unhandled mode ('. $mode .').', LOGGER_DEBUG);
@@ -139,7 +148,7 @@ class Thread extends BaseObject
                /*
                 * Only add will be displayed
                 */
-               if ($item->getDataValue('network') === NETWORK_MAIL && local_user() != $item->getDataValue('uid')) {
+               if ($item->getDataValue('network') === Protocol::MAIL && local_user() != $item->getDataValue('uid')) {
                        logger('[WARN] Conversation::addThread : Thread is a mail ('. $item->getId() .').', LOGGER_DEBUG);
                        return false;
                }
@@ -168,11 +177,11 @@ class Thread extends BaseObject
        public function getTemplateData($conv_responses)
        {
                $a = self::getApp();
-               $result = array();
+               $result = [];
                $i = 0;
 
                foreach ($this->parents as $item) {
-                       if ($item->getDataValue('network') === NETWORK_MAIL && local_user() != $item->getDataValue('uid')) {
+                       if ($item->getDataValue('network') === Protocol::MAIL && local_user() != $item->getDataValue('uid')) {
                                continue;
                        }