-
Notifications
You must be signed in to change notification settings - Fork 2
Update components to be compatible with php82 #239
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
base: test-php82
Are you sure you want to change the base?
Conversation
Avoid passing null as the second param to explode
Avoid passing null to trim
Avoid passing null to json_decode
Avoid passing null as the second param to explode
Avoid passing null to rtrim
Fix getting offset of bool type
Avoid passing null to trim
Avoid passing null as the second param to preg_match_all
Avoid passing null to strtolower
Avoid passing null to strtolower
Avoid passing null to stripslashes
Avoid passing null to count
Avoid passing null to json_decode
Avoid passing null to stripslashes
Avoid passing null to stripslashes
Avoid passing null to stripslashes
| ->set('group', $group) | ||
| ->set('customFields', $customFields) | ||
| ->set('customAnswers', $customFieldForm) | ||
| ->set('customAnswers', $customFieldForms) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I couldn't find where 'customFieldForms' is being created in the code. The change to pluralize 'form' to 'forms' here is intentional though?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, good catch. I need to fix this at some point
|
Nice work Archie! I went through about half of the patch code, and then finished by going through all of your manual fixes where the patch needed tweaking. Everything looks good to me. |
This work was done by:
diffing the core php8 code and core php5 code and applying them onto the current app code