From 22e89b2dd37eedcb00fd000948432561e5846415 Mon Sep 17 00:00:00 2001 From: John Mizerek Date: Sun, 1 Mar 2026 18:45:34 -0800 Subject: [PATCH] Fix __OO_STATE__ extraction for Chrome View Source HTML Chrome's Ctrl+U (View Source) saves wraps content in tags which breaks the regex termination pattern ;\s*window\. because HTML tags appear between ; and the next window. variable. Strip HTML tags from a working copy before regex extraction when View Source format is detected (presence of --- api/setup/analyzeMenuUrl.cfm | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/api/setup/analyzeMenuUrl.cfm b/api/setup/analyzeMenuUrl.cfm index 5668f25..37a167c 100644 --- a/api/setup/analyzeMenuUrl.cfm +++ b/api/setup/analyzeMenuUrl.cfm @@ -278,7 +278,12 @@ - + + + ]+>", "", "all")> + + @@ -557,7 +562,12 @@ - + + + ]+>", "", "all")> + + @@ -940,7 +950,12 @@ - + + + ]+>", "", "all")> + +