From 903ff2dc743560ba8b2e8f221d1cbe89714d099b Mon Sep 17 00:00:00 2001
From: Leigh B Stoller <stoller@flux.utah.edu>
Date: Sat, 22 Feb 2025 11:09:12 -0700
Subject: [PATCH] Classic fix for our Last Classic User.

---
 www/shownodetype.php3 | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/www/shownodetype.php3 b/www/shownodetype.php3
index b85e276a0c..e8d3445a71 100644
--- a/www/shownodetype.php3
+++ b/www/shownodetype.php3
@@ -36,6 +36,9 @@ if (!$CLASSICWEB_OVERRIDE) {
         return;
     }
 }
+else {
+    $classic = 1;
+}
 
 #
 # Anyone can access this info, its a PUBLIC PAGE!
@@ -179,7 +182,8 @@ $query_result =
 if (mysql_num_rows($query_result)) {
     echo "<br>
           <center>
-	  Nodes (<a href=nodecontrol_list.php3?showtype=$node_type>Show details</a>)
+	  Nodes (<a href=nodecontrol_list.php3?showtype=$node_type" .
+          ($classic ? "&classic=1" : "") . ">Show details</a>)
 	  <br>
           <table class=nogrid cellspacing=0 border=0 cellpadding=5>\n";
 
-- 
GitLab