/**
  * Show group members
  */
 public function membersAction()
 {
     $Connections = new Application_Model_Connections();
     // flush if user not found
     if (!$this->profile || $this->profile->type !== 'group') {
         $this->redirect('');
     }
     $total_count = $Connections->getFriends($this->profile->id, false, true);
     $this->view->title = $this->view->translate('Members');
     $this->view->title_number = $total_count;
     $Connections->page_number = $this->preparePagination($total_count);
     $this->view->members = $Connections->getFriends($this->profile->id);
     $this->prepareProfile($this->profile);
     $this->render('memberslist');
 }