xss_cleaning and uppercase callsign

This commit is contained in:
HB9HIL
2024-08-13 22:04:25 +02:00
parent 0fefb205d9
commit 3a20161194

View File

@@ -69,7 +69,7 @@ class Widgets extends CI_Controller {
$data['theme'] = $this->config->item('option_theme');
}
$data['user_callsign'] = $user_callsign;
$data['user_callsign'] = strtoupper($this->security->xss_clean($user_callsign));
$this->load->view('widgets/oqrs', $data);
}
}