-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
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
PHP8 null arrays issue #14
Comments
This issue sounds like this comment in the REDCap community:
function redcap_data_entry_form_top($project_id, $instrument, $event_id, $record = null, $group_id = null, $repeat_instance = 1) {
function redcap_survey_page_top($project_id, $instrument, $event_id, $survey_hash, $record = null, $group_id = null, $response_id = null, $repeat_instance = 1) {
|
We couldn't reproduce this bug, but we made the change requested in the initial submission and it appears to be benign. The change is included in release 1.1.2. That release has been submitted to the REDCap Repo just now. If 1.1.2 doesn't fix this issue, we'll need a more detailed bug report that allows us to reproduce the error. |
We are getting the following error from the CSS injector:
Looks like initialising
$value = $value ?? []
before line 93 in this block will fix it. I will test this and submit a PR if successful.The text was updated successfully, but these errors were encountered: