Fixed When content changes are logged they always return empty

TickTackk

Well-known member
Affected version
2.0.*
In file: src\XF\Repository\ChangeLog.php:136

PHP:
            if ($entry->save(true, false))
            {
                $insert[] = $entry;
            }
should be
PHP:
            if ($entry->save(true, false))
            {
                $inserted[] = $entry;
            }
 
Thank you for reporting this issue. It has now been resolved and we are aiming to include it in a future XF release (2.1.3).

Change log:
When logging content changes, return the applied changes correctly.
Any changes made as a result of this issue being resolved may not be rolled out here until later.
 
Top Bottom