mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
[Lookup] Change SCP lookup from GET to POST
stops memory leaks when searching callsigns like i/4o4a
This commit is contained in:
@@ -53,10 +53,9 @@ class Lookup extends CI_Controller {
|
||||
$this->load->view('lookup/result', $data);
|
||||
}
|
||||
|
||||
public function scp($call) {
|
||||
|
||||
if($call) {
|
||||
$uppercase_callsign = strtoupper($call);
|
||||
public function scp() {
|
||||
if($_POST['callsign']) {
|
||||
$uppercase_callsign = strtoupper($_POST['callsign']);
|
||||
}
|
||||
|
||||
// SCP results from logbook
|
||||
|
||||
Reference in New Issue
Block a user