Skip to content
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

PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in ...\FieldtypeRecurringDates\partials\AlpineComponent.php:17 #3

Open
juergenweb opened this issue Mar 15, 2023 · 0 comments

Comments

@juergenweb
Copy link

This is only a little warning in partials\AlpineComponent.php: line 17

PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in ...\FieldtypeRecurringDates\partials\AlpineComponent.php:17

$inputfield->getAttribute('data-json-rrule')

does not be null, but it is null in my case.

it would be better to check if it is null before to prevent the warning on higher PHP versions:

if(!is_null($inputfield->getAttribute('data-json-rrule'))){ $pre_text = htmlspecialchars($inputfield->getAttribute('data-json-rrule'), ENT_QUOTES, "UTF-8"); }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant