summaryrefslogtreecommitdiff
path: root/swat/esptest/session.esp
diff options
context:
space:
mode:
Diffstat (limited to 'swat/esptest/session.esp')
-rw-r--r--swat/esptest/session.esp13
1 files changed, 1 insertions, 12 deletions
diff --git a/swat/esptest/session.esp b/swat/esptest/session.esp
index 3d787012c6..ec747df442 100644
--- a/swat/esptest/session.esp
+++ b/swat/esptest/session.esp
@@ -43,18 +43,7 @@ if (request['REQUEST_METHOD'] == "POST") {
}
}
-function showArray(name, array) {
- write("<h3>Array: " + name + "</h3>\n");
- if (array == undefined) {
- write("undefined<br>\n");
- return;
- }
- for (v in array) {
- write(name + "[" + v + "]=" + array[v] + "<br>\n");
- }
-}
-
-showArray("session", session);
+simple_table(session);
write("SessionId=" + request['SESSION_ID'] + "<br>\n");
%>