diff options
author | Ted Trask <ttrask01@yahoo.com> | 2014-11-04 13:55:55 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2014-11-04 13:55:55 +0000 |
commit | eaa2dc4ebe770b120fd6049268300c9083f8e4f9 (patch) | |
tree | 81ba148163f04ecb7e97653aa1fc8b05ad129833 /lib/db-listdatabases-html.lsp | |
parent | d70a634fbdc29d6808cbf65cc6283990717f1b3f (diff) | |
download | acf-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-listdatabases-html.lsp')
-rw-r--r-- | lib/db-listdatabases-html.lsp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/db-listdatabases-html.lsp b/lib/db-listdatabases-html.lsp index 91ffa72..525a2b0 100644 --- a/lib/db-listdatabases-html.lsp +++ b/lib/db-listdatabases-html.lsp @@ -27,7 +27,7 @@ -- hide the database, since we don't need it to list databases form.value.connection.value.database = nil end %> -<% 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.displayformstart(form, page_info) htmlviewfunctions.displayitem(form.value.connection, page_info, htmlviewfunctions.incrementheader(header_level), "connection") form.option = "Update" |