Cleaned up code formatting

这个提交包含在:
Peter Goodhall 2025-05-23 15:03:32 +01:00
父节点 b894a5d3c6
当前提交 e2006a936f

查看文件

@ -1,12 +1,15 @@
<?php if (! defined('BASEPATH')) exit('No direct script access allowed'); <?php if (! defined('BASEPATH')) exit('No direct script access allowed');
class Activated_gridmap extends CI_Controller { class Activated_gridmap extends CI_Controller
{
function __construct() { function __construct()
{
parent::__construct(); parent::__construct();
} }
public function index() { public function index()
{
$data['page_title'] = "Activated Gridsquare Map"; $data['page_title'] = "Activated Gridsquare Map";
$this->load->model('bands'); $this->load->model('bands');
@ -44,7 +47,8 @@ class Activated_gridmap extends CI_Controller {
$this->load->view('interface_assets/footer', $footerData); $this->load->view('interface_assets/footer', $footerData);
} }
public function getGridsjs() { public function getGridsjs()
{
$band = $this->security->xss_clean($this->input->post('band')); $band = $this->security->xss_clean($this->input->post('band'));
$mode = $this->security->xss_clean($this->input->post('mode')); $mode = $this->security->xss_clean($this->input->post('mode'));
$qsl = $this->security->xss_clean($this->input->post('qsl')); $qsl = $this->security->xss_clean($this->input->post('qsl'));