function edit($args)
 {
     throw new Exception('Look at ticket #1527');
     if (_Core_Request::getCurrent()->method == 'POST') {
         $params = $_POST;
         isset($params['id']) ? 1 : ($pda = 1);
         isset($params['id']) ? 1 : ($params['id'] = $args[0]);
         $account = Account::load($params);
         if (!$account->update($this->user, $params)) {
             $this->tpl->assign('error', array('text' => 'Счёт не удалён'));
         }
         $this->tpl->assign('result', array('text' => 'Счёт успешно изменён'));
         $this->tpl->assign('name_page', 'info_panel/info_panel');
     } else {
         $acm = new Account_Model();
         $acc = $acm->getAccountPdaInformation($args[0]);
         $this->tpl->assign('acc', $acc);
         $this->tpl->assign('name_page', 'account/edit');
     }
 }