Test Husky pre-commit hook.
This commit is contained in:
parent
668d8938ce
commit
376e1d0344
|
@ -13,7 +13,6 @@ class Form extends CI_Controller
|
||||||
parent::__construct();
|
parent::__construct();
|
||||||
$this->load->model('Form_model');
|
$this->load->model('Form_model');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function submit()
|
public function submit()
|
||||||
{
|
{
|
||||||
if (!$this->session->userdata('logged_in')) {
|
if (!$this->session->userdata('logged_in')) {
|
||||||
|
@ -32,7 +31,6 @@ class Form extends CI_Controller
|
||||||
|
|
||||||
echo json_encode($response);
|
echo json_encode($response);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function view($form_id)
|
public function view($form_id)
|
||||||
{
|
{
|
||||||
$data['title'] = $this->Form_model->get_form_title($form_id);
|
$data['title'] = $this->Form_model->get_form_title($form_id);
|
||||||
|
|
Loading…
Reference in New Issue