From 1b104df51eca40ac269a6afd0ef562945cc8c037 Mon Sep 17 00:00:00 2001 From: Pontoporeia Date: Wed, 15 Apr 2026 12:55:58 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20undefined=20$from=E2=80=93=20variable:=20?= =?UTF-8?q?brace-interpolate=20variables=20before=20en-dash=20in=20double-?= =?UTF-8?q?quoted=20string?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/admin/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/admin/index.php b/public/admin/index.php index 0f50bb3..adc8062 100644 --- a/public/admin/index.php +++ b/public/admin/index.php @@ -365,7 +365,7 @@ document.addEventListener('DOMContentLoaded', () => { $from = $offset + 1; $to = min($offset + $perPage, $totalCount); if ($totalPages > 1) { - echo "$from–$to sur $totalCount TFE"; + echo "{$from}–{$to} sur {$totalCount} TFE"; } else { echo "$totalCount TFE"; }