WordPress / sqlite-database-integration

Feature Plugin to add SQLite support to WordPress. Under Development.
GNU General Public License v2.0
223 stars 37 forks source link

Deprecation notice for strtoupper #138

Closed mrdarrengriffin closed 2 months ago

mrdarrengriffin commented 2 months ago

The following notice appears:

Deprecated: strtoupper(): Passing null to parameter #1 ($string) of type string is deprecated in /var/www/html/wp-content/mu-plugins/sqlite-database-integration/wp-includes/sqlite/class-wp-sqlite-token.php on line 221

A null check is not performed for $this->value in the sqlite-database-integration must-use plugin causing a deprecation notice.

The file is /wp-content/mu-plugins/sqlite-database-integration/wp-includes/sqlite/class-wp-sqlite-token.php on line 214

image

a fix for this could be to introduce another null check

image

mrdarrengriffin commented 2 months ago

My apologies, it appears this has been fixed already. Closing