Make array declarations php v5.3 friendly!
pull/179/head
teabreakninja 2016-01-18 12:38:00 +00:00
rodzic b750276dad
commit c824c07f93
1 zmienionych plików z 10 dodań i 4 usunięć

Wyświetl plik

@ -47,14 +47,17 @@ class QSO extends CI_Controller {
// This solves the problem of CI dumping out the session // This solves the problem of CI dumping out the session
// cookie each time set_userdata is called. // cookie each time set_userdata is called.
// For more info, see http://bizhole.com/codeigniter-nginx-error-502-bad-gateway/ // 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'), 'band' => $this->input->post('band'),
'freq' => $this->input->post('freq'), 'freq' => $this->input->post('freq'),
'mode' => $this->input->post('mode'), 'mode' => $this->input->post('mode'),
'sat_name' => $this->input->post('sat_name'), 'sat_name' => $this->input->post('sat_name'),
'sat_mode' => $this->input->post('sat_mode'), 'sat_mode' => $this->input->post('sat_mode'),
'radio' => $this->input->post('radio') 'radio' => $this->input->post('radio')
]; );
// ];
$this->session->set_userdata($qso_data); $this->session->set_userdata($qso_data);
@ -111,14 +114,17 @@ class QSO extends CI_Controller {
$this->logbook_model->create_qso(); $this->logbook_model->create_qso();
// Store Basic QSO Info for reuse // 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'), 'band' => $this->input->post('band'),
'freq' => $this->input->post('freq'), 'freq' => $this->input->post('freq'),
'mode' => $this->input->post('mode'), 'mode' => $this->input->post('mode'),
'sat_name' => $this->input->post('sat_name'), 'sat_name' => $this->input->post('sat_name'),
'sat_mode' => $this->input->post('sat_mode'), 'sat_mode' => $this->input->post('sat_mode'),
'radio' => $this->input->post('radio') 'radio' => $this->input->post('radio')
]; );
//];
$this->session->set_userdata($qso_data); $this->session->set_userdata($qso_data);