Fix some UTF8 output when doing a search. Convert filename desc to CP437 when displaying files in a file area
All checks were successful
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 38s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 1m49s
Create Docker Image / Final Docker Image Manifest (push) Successful in 10s

This commit is contained in:
2024-10-24 11:31:20 +11:00
parent 2132b4564c
commit afb8ad9d17
2 changed files with 4 additions and 3 deletions

View File

@@ -1,5 +1,6 @@
<!-- $o=Filearea::class -->
@use(App\Models\Domain)
@use(App\Classes\FTN\Message)
@extends('layouts.app')
@section('htmlheader_title')
@@ -177,7 +178,7 @@
<td>{{ $oo->name }}</td>
<td class="text-end">{{ number_format($oo->size) }}</td>
<td>{{ $oo->datetime->format('Y-m-d H:i:s') }}</td>
<td><small>{{ $oo->desc }}</small></td>
<td><small>{!! Message::tr($oo->desc) !!}</small></td>
</tr>
@endforeach
</tbody>