mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 02:14:13 +00:00
Fix condition check for user_qso_show_map input
Typo. sri
This commit is contained in:
@@ -824,7 +824,7 @@ class User extends CI_Controller {
|
||||
}
|
||||
}
|
||||
|
||||
if ($this->input->post('user_qso_show_map') !== false) {
|
||||
if ($this->input->post('user_qso_show_map')) {
|
||||
$data['user_qso_show_map'] = $this->input->post('user_qso_show_map', true);
|
||||
} else {
|
||||
$qkey_opt = $this->user_options_model->get_options('qso_tab', array('option_name' => 'map', 'option_key' => 'show'), $this->uri->segment(3))->result();
|
||||
|
||||
Reference in New Issue
Block a user