ImpressCMS / impresscms

A multilingual, extensible, community oriented CMS developed in PHP
https://www.impresscms.org
Other
27 stars 35 forks source link

Format code, use strlen instead of sizeof on a string #1517

Closed skenow closed 9 months ago

skenow commented 9 months ago

sizeof (alias of count) does not work on strings in PHP8+. When creating an IPF object, the method to generate the SEO title was using sizeof on a string, resulting in a fatal error.

Fixes #1516