Steps to reproduce
------------------
* Use PHP 8.1 and D7 with a default logging policy (eg "All Messages" or "Errors and Warnings")
* Use "Search > Find Contacts"
* On the listing page, observe a bunch of warnings
Before
------
~25 warnings, including ~10 related to modifier.mb_truncate.php
After
-----
~10 warnings, none involving `mb_truncate`
}
- if ($strlen($string) > $length) {
+ if ($strlen($string ?: '') > $length) {
$length -= $strlen($etc);
if (!$break_words) {
$string = preg_replace('/\s+?(\S+)?$/', '', $substr($string, 0, $length + 1));