From 04cd15a22fcbf5d1e4ccce513bb8f133a0d6aa95 Mon Sep 17 00:00:00 2001 From: Gmer4Lfe Date: Sat, 6 Jun 2026 15:55:31 -0400 Subject: [PATCH] Fix rsync page: add missing _esc helper that broke all card rendering --- Plugin/unraid/pages/rsync.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Plugin/unraid/pages/rsync.php b/Plugin/unraid/pages/rsync.php index ab0a7e0..cbb6f46 100644 --- a/Plugin/unraid/pages/rsync.php +++ b/Plugin/unraid/pages/rsync.php @@ -731,6 +731,10 @@ function _bwSection(data) { } // ── Sync log card ───────────────────────────────────────────────────────────── +function _esc(s) { + return (s||'').replace(/&/g,'&').replace(//g,'>').replace(/"/g,'"'); +} + let _liveTicker = null; let _fastPollTimer = null;