In new version viewing admin/users shows deprecated with php 8.2
Deprecated: trim(): Passing null to parameter #1 ($string) of type string is deprecated in /home/u44173p136925/domains/****/public_html/oc-includes/osclass/classes/datatables/UsersDataTable.php on line 136
This line:
$row['phone'] = trim(trim($aRow['s_phone_mobile']) <> '' ? $aRow['s_phone_mobile'] : $aRow['s_phone_land']);
To this:
$row['phone'] = trim(!empty($aRow['s_phone_mobile']) ? $aRow['s_phone_mobile'] : (!empty($aRow['s_phone_land']) ? $aRow['s_phone_land'] : ''));
fixed the error