- Issue created by @tvb
- @tvb opened merge request.
- First commit to issue fork.
- Status changed to Fixed
over 1 year ago 12:15pm 11 May 2023 - Status changed to Fixed
over 1 year ago 12:31pm 11 May 2023
Error message on (some) menu admin pages (e.g. admin/structure/menu/manage/main):
Deprecated function: usort(): Returning bool from comparison function is deprecated, return an integer less than, equal to, or greater than zero in Drupal\targets\TargetManager->getTargetFromPath() (line 181 of modules/contrib/targets/src/TargetManager.php).
Drupal 9.5.4
PHP 8.1.13
Target 1.1.4
In targets/src/TargetManager.php:
Modify
return $a_index > $a_index;
to
return (int) $b_index - (int) $a_index;
Fixed
1.1
Code