Hello,
I since last update I have a notice on my development websites
Notice: Undefined index: parent in /var/www/html/web/app/plugins/meta-box-aio/vendor/meta-box/mb-settings-page/src/Loader.php on line 22
Code location at this line
// Sort setting page array by "parent".
usort( $settings_pages, function ( $a, $b ) {
return strlen( $a['parent'] ) - strlen( $b['parent'] );
} );
I checked on old websites without last update, this code doesn't exist.
Fix idea is to check 'parent' flag exist or not.
On the documentation, this parameter is optional.
Maybe this fix could be ok.
// Sort setting page array by "parent".
usort( $settings_pages, function ( $a, $b ) {
return (isset($a['parent']) ? strlen( $a['parent'] ) : 0) - (isset($b['parent']) ? strlen( $b['parent'] ) : 0);
} );
I apply temporary this fix on my side.