excludeKeys not working
sroutier opened this issue · 2 comments
sroutier commented
The config record.excludeKeys
is not working properly.
The method Recorder.getData()
:
protected function getData() {
$data = Input::all();
if (is_array($data)) {
$this->excludeKeys($data);
return $data;
} else {
return null;
}
}
Return the unmodified/unfiltered $data
array instead of returning the array modified by Recorder.excludeKeys(...)
PR on its way.
tylercd100 commented
Version 3.7.5 has this fix
sroutier commented
Cool, it's fixed thank you but I can't use it.
I'll open a new issue.
/s