Exemple #1
0
 public function issuepwdAction()
 {
     try {
         $this->checkLogin();
         $bms_info = new BmsInfo();
         $bms_info->change_password($this->request->getPost());
         header("Location: " . ROOT_URL . "/admin/finish/");
     } catch (Exception $e) {
         $this->displayErrorView($e->getMessage());
     }
 }