Enable concurrency, where session is ONLY readed afterwards in same process

This commit is contained in:
int2001
2024-01-13 11:06:05 +00:00
parent 74813d2702
commit 519ddd03b7
3 changed files with 13 additions and 7 deletions

View File

@@ -54,6 +54,7 @@ class Lookup extends CI_Controller {
}
public function scp() {
session_write_close();
if($_POST['callsign']) {
$uppercase_callsign = strtoupper($_POST['callsign']);
}
@@ -112,6 +113,7 @@ class Lookup extends CI_Controller {
}
public function dok($call) {
session_write_close();
if($call) {
$uppercase_callsign = strtoupper($call);