We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The config record.excludeKeys is not working properly.
record.excludeKeys
The method Recorder.getData():
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(...)
$data
Recorder.excludeKeys(...)
PR on its way.
The text was updated successfully, but these errors were encountered:
Version 3.7.5 has this fix
Sorry, something went wrong.
Cool, it's fixed thank you but I can't use it. I'll open a new issue. /s
No branches or pull requests
The config
record.excludeKeys
is not working properly.The method
Recorder.getData()
:Return the unmodified/unfiltered
$data
array instead of returning the array modified byRecorder.excludeKeys(...)
PR on its way.
The text was updated successfully, but these errors were encountered: