summaryrefslogtreecommitdiffstats
path: root/lib/db-viewtable-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2014-11-04 13:55:55 +0000
committerTed Trask <ttrask01@yahoo.com>2014-11-04 13:55:55 +0000
commiteaa2dc4ebe770b120fd6049268300c9083f8e4f9 (patch)
tree81ba148163f04ecb7e97653aa1fc8b05ad129833 /lib/db-viewtable-html.lsp
parentd70a634fbdc29d6808cbf65cc6283990717f1b3f (diff)
downloadacf-db-eaa2dc4ebe770b120fd6049268300c9083f8e4f9.tar.bz2
acf-db-eaa2dc4ebe770b120fd6049268300c9083f8e4f9.tar.xz
Change HTML views to display connection if there was a connection errorv0.1.0
Diffstat (limited to 'lib/db-viewtable-html.lsp')
-rw-r--r--lib/db-viewtable-html.lsp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/db-viewtable-html.lsp b/lib/db-viewtable-html.lsp
index d3bc76f..a8efaa7 100644
--- a/lib/db-viewtable-html.lsp
+++ b/lib/db-viewtable-html.lsp
@@ -42,7 +42,7 @@ keyvalues.redir = redir.value
<%
local header_level2 = htmlviewfunctions.incrementheader(header_level)
htmlviewfunctions.displayformstart(form, page_info)
-if form.value.connection and next(form.value.connection.value) ~= nil then
+if form.value.connection and ( next(form.value.connection.value) ~= nil or form.value.connection.errtxt ) then
htmlviewfunctions.displayitem(form.value.connection, page_info, header_level2, "connection")
end
htmlviewfunctions.displayitem(form.value.table, page_info, header_level2, "table")