From 24e4abb01ca3d3916eb5a52785100ba318aacaf7 Mon Sep 17 00:00:00 2001
From: James Carlson
Date: Mon, 4 May 2026 08:59:48 -0600
Subject: [PATCH] Fix typo in cwe863 lesson session attribute name
Co-Authored-By: Claude Opus 4.7 (1M context)
---
trainingportal/static/lessons/blackBelt/cwe863.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/trainingportal/static/lessons/blackBelt/cwe863.html b/trainingportal/static/lessons/blackBelt/cwe863.html
index 9f1f8525..412d48c4 100644
--- a/trainingportal/static/lessons/blackBelt/cwe863.html
+++ b/trainingportal/static/lessons/blackBelt/cwe863.html
@@ -15,7 +15,7 @@
-if(session.getAttribute("ch3loggedin")==null || !(boolean)session.getAttribute("ch863loggedin")){
+if(session.getAttribute("ch863loggedin")==null || !(boolean)session.getAttribute("ch863loggedin")){
response.sendRedirect("ch863.jsp?loggedin=false");
}
else{