Merge pull request #19041 from GrayFix/fix-admin_audit-preview

mb substring in audit_log
This commit is contained in:
Roeland Jago Douma 2020-01-22 11:38:05 +01:00 committed by GitHub
commit 4c94d88d3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -183,7 +183,7 @@ class Application extends App {
/** @var File $file */
$file = $event->getSubject();
$fileActions->preview([
'path' => substr($file->getInternalPath(), 5),
'path' => mb_substr($file->getInternalPath(), 5),
'width' => $event->getArguments()['width'],
'height' => $event->getArguments()['height'],
'crop' => $event->getArguments()['crop'],