예제 #1
0
파일: AccountNext.php 프로젝트: vijo/movim
 function ajaxRegister($form)
 {
     $s = new Set();
     $s->setData($form)->request();
 }
예제 #2
0
 function ajaxRegister($form)
 {
     if (isset($form->re_password) && $form->re_password->value != $form->password->value) {
         Notification::append(null, $this->__('account.password_not_same'));
         return;
     }
     $s = new Set();
     $s->setData($form)->request();
 }