XenForo
Administrative
- Thread starter
- Admin
- #1
The
An example of triggering this is;
PHP:
Read more
ادامه مطلب...
Arr::stringToArray
is used on potentially nullable inputs, but trim
requires non-null inputs as of php 8.1An example of triggering this is;
PHP:
Code:
/** @var \XF\Entity\ChangeLog $changeLog */
$changeLog = \XF::em()->create('XF:ChangeLog');
$changeLog->content_type = 'user';
$changeLog->content_id = 1;
// $changeLog->old_value = '';
$changeLog->new_value =...
Read more
ادامه مطلب...