stellarwp / schema

A library for simplifying the creation, update, and field modification of custom tables within WordPress.
GNU General Public License v2.0
26 stars 2 forks source link

Prevent version_compare on null #33

Closed oakesjosh closed 10 months ago

oakesjosh commented 10 months ago

The default value of get_stored_version() is null which can throw a deprecation when passed to version_compare() in newer PHP versions

Deprecated: version_compare(): Passing null to parameter #1 ($version1) of type string is deprecated

borkweb commented 10 months ago

Thank you for that fix!