소스 검색

return false, if token is not found in database

master
Dom SP 3 년 전
부모
커밋
0a8fde4e56
1개의 변경된 파일8개의 추가작업 그리고 5개의 파일을 삭제
  1. +8
    -5
      app/controller/email.php

+ 8
- 5
app/controller/email.php 파일 보기

@@ -19,15 +19,18 @@ class Email {
$db = new \DB\Jig($token_db,\DB\Jig::FORMAT_JSON);
$formcall = new \DB\Jig\Mapper($db,'form_calls');

$formcall->load(['@token = ?', $token]);
$f3->config($formcall->form);
$this->path = $formcall->path;

return true;
if($formcall->load(['@token = ?', $token])) {
$f3->config($formcall->form);
$this->path = $formcall->path;
return true;
} else {
return false;
}
}
function get_post_data() {
$f3 = \Base::instance();
$token = $f3->get('POST.xss-token');
if (ctype_alnum( $token )) {
if ($this->load_form_config($token)) {

Loading…
취소
저장