From c824c07f936e8cfd95e4dbd4e60741941dd25335 Mon Sep 17 00:00:00 2001 From: teabreakninja Date: Mon, 18 Jan 2016 12:38:00 +0000 Subject: [PATCH] Update qso.php Make array declarations php v5.3 friendly! --- application/controllers/qso.php | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/application/controllers/qso.php b/application/controllers/qso.php index a0c8ab25..3d13ef41 100644 --- a/application/controllers/qso.php +++ b/application/controllers/qso.php @@ -47,14 +47,17 @@ class QSO extends CI_Controller { // This solves the problem of CI dumping out the session // cookie each time set_userdata is called. // For more info, see http://bizhole.com/codeigniter-nginx-error-502-bad-gateway/ - $qso_data = [ + // $qso_data = [ + // 18-Jan-2016 - make php v5.3 friendly! + $sqo_data = array( 'band' => $this->input->post('band'), 'freq' => $this->input->post('freq'), 'mode' => $this->input->post('mode'), 'sat_name' => $this->input->post('sat_name'), 'sat_mode' => $this->input->post('sat_mode'), 'radio' => $this->input->post('radio') - ]; + ); + // ]; $this->session->set_userdata($qso_data); @@ -111,14 +114,17 @@ class QSO extends CI_Controller { $this->logbook_model->create_qso(); // Store Basic QSO Info for reuse - $qso_data = [ + //$qso_data = [ + // 18-Jan-2016 - make php v5.3 friendly! + $qso_data = array( 'band' => $this->input->post('band'), 'freq' => $this->input->post('freq'), 'mode' => $this->input->post('mode'), 'sat_name' => $this->input->post('sat_name'), 'sat_mode' => $this->input->post('sat_mode'), 'radio' => $this->input->post('radio') - ]; + ); + //]; $this->session->set_userdata($qso_data);