function getReplyProfiles() { $all = parent::getReplyProfiles(); $profiles = array(); $rootAuthor = $this->root->getProfile(); foreach ($all as $profile) { if ($profile->id != $rootAuthor->id) { $profiles[] = $profile; } } return $profiles; }