From 376e1d034451e88759e2650e54ec764b47ffc6b0 Mon Sep 17 00:00:00 2001 From: RameshT Date: Tue, 6 Aug 2024 14:38:17 +0530 Subject: [PATCH] Test Husky pre-commit hook. --- application/controllers/Form.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/application/controllers/Form.php b/application/controllers/Form.php index 6ca8937..e764a4a 100644 --- a/application/controllers/Form.php +++ b/application/controllers/Form.php @@ -13,7 +13,6 @@ class Form extends CI_Controller parent::__construct(); $this->load->model('Form_model'); } - public function submit() { if (!$this->session->userdata('logged_in')) { @@ -32,7 +31,6 @@ class Form extends CI_Controller echo json_encode($response); } - public function view($form_id) { $data['title'] = $this->Form_model->get_form_title($form_id);