Test Husky pre-commit hook.

This commit is contained in:
RameshT 2024-08-06 14:47:03 +05:30
parent 376e1d0344
commit f31bf6e2d2
1 changed files with 1 additions and 3 deletions

View File

@ -36,8 +36,6 @@ class Form extends CI_Controller
$data['title'] = $this->Form_model->get_form_title($form_id); $data['title'] = $this->Form_model->get_form_title($form_id);
if ($data['title'] === null) { if ($data['title'] === null) {
show_404(); // Show 404 if form_id is invalid show_404(); // Show 404 if form_id is invalid
} }$this->load->view('templates/forms_ui', $data);
$this->load->view('templates/forms_ui', $data);
} }
} }