caseproof / members

Members WordPress plugin.
GNU General Public License v2.0
80 stars 35 forks source link

Automatic conversion of false to array is deprecated #116

Closed DSGND closed 11 months ago

DSGND commented 11 months ago

https://github.com/caseproof/members/blob/1bf477fff500e305cecebfd93d54b591aaa56ad0/addons/members-acf-integration/src/Plugin.php#L246C1-L247C1

PHP Deprecated: Automatic conversion of false to array is deprecated in /plugins/members/addons/members-acf-integration/src/Plugin.php on line 246

This is a notice in PHP 8.1. It can be fixed by merging the array:

$args['supports'] = array_merge((array)$args['supports'], array('author'));
cartpauj commented 11 months ago

Fixed in: https://github.com/caseproof/members/pull/117 Thanks for the report.