function resetpasswordAction()
 {
     $this->_helper->layout->disableLayout();
     $this->_helper->viewRenderer->setNoRender(TRUE);
     $session = SessionWrapper::getInstance();
     $this->_translate = Zend_Registry::get("translate");
     $id = decode($this->_getParam('id'));
     // debugMessage($id);
     $user = new UserAccount();
     $user->populate($id);
     debugMessage($user->toArray());
     // $formvalues = array('email'=>$user->getEmail());
     $user->setEmail($user->getEmail());
     // debugMessage('error '.$user->getErrorStackAsString()); exit();
     if ($user->recoverPassword()) {
         $session->setVar(SUCCESS_MESSAGE, sprintf($this->_translate->translate('profile_change_password_admin_confirmation'), $user->getName()));
         // send a link to enable the user to recover their password
         // debugMessage('no error found ');
         $view = new Zend_View();
         $url = $this->view->serverUrl($this->view->baseUrl('profile/view/id/' . encode($user->getID())));
         $usecase = '1.9';
         $module = '1';
         $type = USER_RESET_PASSWORD;
         $details = "Reset password request. Reset link sent to <a href='" . $url . "' class='blockanchor'>" . $user->getName() . "</a>";
         $browser = new Browser();
         $audit_values = $session->getVar('browseraudit');
         $audit_values['module'] = $module;
         $audit_values['usecase'] = $usecase;
         $audit_values['transactiontype'] = $type;
         $audit_values['userid'] = $session->getVar('userid');
         $audit_values['url'] = $url;
         $audit_values['transactiondetails'] = $details;
         $audit_values['status'] = "Y";
         // debugMessage($audit_values);
         $this->notify(new sfEvent($this, $type, $audit_values));
     } else {
         $session->setVar(ERROR_MESSAGE, $user->getErrorStackAsString());
         $session->setVar(FORM_VALUES, $this->_getAllParams());
         // debugMessage('no error found ');
     }
     // exit();
     $this->_helper->redirector->gotoUrl(decode($this->_getParam(URL_SUCCESS)));
 }