Logged In: NO

By te way the fix should be modify the following lines (starting at 226 saja.php):

$_SESSION['SAJA_PROCESS']['REQUESTS'][$request_id] = array (
'UTF8' => $this->true_utf8,
'FUNCTION' => $function,
'PROCESS_FILE' => $process_file ? $process_file : $this->get_process_file(),
'CLASS' => $this->get_process_class()
);

As follow

$_SESSION['SAJA_PROCESS']['REQUESTS'][$request_id] = array(
'UTF8' => $this->true_utf8,
'FUNCTION' => $function,
'PROCESS_FILE' => $process_file ? $process_file : $this->get_process_file(),
'CLASS' => $this->get_process_class(),
'HISTORY' => $use_history
);