@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | return; |
16 | 16 | |
17 | 17 | $this->form_validation->set_rules('issue_description', 'Description', 'required|max_length[1000]'); |
18 | - $this->form_validation->set_rules('issue_url', 'URL', 'valid_url'); |
|
18 | + $this->form_validation->set_rules('issue_url', 'URL', 'valid_url'); |
|
19 | 19 | |
20 | 20 | |
21 | 21 | $this->body_data['issue_submitted'] = FALSE; |
@@ -24,9 +24,9 @@ discard block |
||
24 | 24 | |
25 | 25 | if(!empty($this->input->post('website'))) { |
26 | 26 | $this->body_data['issue_submitted'] = FALSE; |
27 | - log_message('error', 'Bot attempting to spam report issue form: "' . $this->input->post('issue_description') . '"'); |
|
27 | + log_message('error', 'Bot attempting to spam report issue form: "'.$this->input->post('issue_description').'"'); |
|
28 | 28 | } else { |
29 | - $this->body_data['issue_submitted'] = $this->Tracker->issue->report('USERID:' . $this->User->id . ' ||| ' . $this->input->post('issue_description'), NULL, $this->input->post('issue_url')); |
|
29 | + $this->body_data['issue_submitted'] = $this->Tracker->issue->report('USERID:'.$this->User->id.' ||| '.$this->input->post('issue_description'), NULL, $this->input->post('issue_url')); |
|
30 | 30 | } |
31 | 31 | } |
32 | 32 |
@@ -33,7 +33,7 @@ |
||
33 | 33 | |
34 | 34 | <div class="row"> |
35 | 35 | <div class="col-xs-12 col-sm-12 col-md-12"> |
36 | - <?=form_submit($form_submit);?> |
|
36 | + <?=form_submit($form_submit); ?> |
|
37 | 37 | </div> |
38 | 38 | <!-- <div class="col-xs-6 col-sm-6 col-md-6"> |
39 | 39 | <a href="<?=base_url('user/signup')?>" class="btn btn-lg btn-primary btn-block">Create an account</a> |