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