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

Fix unserialize() warning flood with PHP 8.3+. Fix deprecated warnings. #385

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Commits on Feb 23, 2024

  1. Fix unserialize() warnings, deprecated warnings.

    As of PHP 8.3 unserialize() triggers E_WARNING instead of E_NOTICE causing SRDB to dump thousands of notices to the screen as it tries to unserialized non-serialized strings. It now checks for serialized data before trying to unserialize.
    
    Fixed Deprecation warning creating dynamic property: alter_collation.
    
    Fixed Deprecation warning when passing null to htmlentities().
    colinfoster committed Feb 23, 2024
    Configuration menu
    Copy the full SHA
    bdebb50 View commit details
    Browse the repository at this point in the history
  2. Update CHANGELOG.md

    Added v4.1.4 for unserialize() and Deprecated warning fixes.
    colinfoster committed Feb 23, 2024
    Configuration menu
    Copy the full SHA
    cf30018 View commit details
    Browse the repository at this point in the history