Skip to content

Commit 118653b

Browse files
authored
Merge pull request #1 from phl0/fixSemicolon
Fix missing semicolon
2 parents 13aed8d + 9e18887 commit 118653b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

application/models/Logbook_model.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ function create_qso() {
157157
$clean_county_input = null;
158158
}
159159

160-
$darc_dok = trim(xss_clean($this->input->post('darc_dok')))
160+
$darc_dok = trim(xss_clean($this->input->post('darc_dok')));
161161
$qso_locator = strtoupper(trim(xss_clean($this->input->post('locator')) ?? ''));
162162
$qso_name = trim(xss_clean($this->input->post('name')));
163163
$qso_age = null;

0 commit comments

Comments
 (0)